user_copy/lib.rs
1// Copyright 2026 The Fuchsia Authors
2//
3// Use of this source code is governed by a MIT-style
4// license that can be found in the LICENSE file or at
5// https://opensource.org/licenses/MIT
6
7#![no_std]
8
9mod user_iovec;
10mod user_ptr;
11mod user_string_view;
12
13pub use user_iovec::{UserInIovec, UserInOutIovec, UserOutIovec};
14pub use user_ptr::{UserInOutPtr, UserInPtr, UserOutPtr};
15pub use user_string_view::UserStringView;