#[non_exhaustive]#[repr(C)]pub struct io_uring_clone_buffers {
pub src_fd: u32,
pub flags: u32,
pub src_off: u32,
pub dst_off: u32,
pub nr: u32,
/* private fields */
}
Available on crate feature
io_uring
only.Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.src_fd: u32
§flags: u32
§src_off: u32
§dst_off: u32
§nr: u32
Trait Implementations§
Source§impl Debug for io_uring_clone_buffers
impl Debug for io_uring_clone_buffers
Source§impl Default for io_uring_clone_buffers
impl Default for io_uring_clone_buffers
Source§fn default() -> io_uring_clone_buffers
fn default() -> io_uring_clone_buffers
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for io_uring_clone_buffers
impl RefUnwindSafe for io_uring_clone_buffers
impl Send for io_uring_clone_buffers
impl Sync for io_uring_clone_buffers
impl Unpin for io_uring_clone_buffers
impl UnwindSafe for io_uring_clone_buffers
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more