#[repr(C)]pub struct nvme_io_mgmt_send_args {
pub data: *mut c_void,
pub args_size: c_int,
pub fd: c_int,
pub nsid: __u32,
pub data_len: __u32,
pub timeout: __u32,
pub mos: __u16,
pub mo: __u8,
}Expand description
struct nvme_io_mgmt_send_args - Arguments for the NVMe I/O Management Send command @data: Userspace address of the data @args_size: Size of &struct nvme_io_mgmt_send_args @fd: File descriptor of nvme device @nsid: Namespace identifier @data_len: Length of @data @timeout: Timeout in ms @mos: Management Operation Specific @mo: Management Operation
Fields§
§data: *mut c_void§args_size: c_int§fd: c_int§nsid: __u32§data_len: __u32§timeout: __u32§mos: __u16§mo: __u8Trait Implementations§
Source§impl Clone for nvme_io_mgmt_send_args
impl Clone for nvme_io_mgmt_send_args
Source§fn clone(&self) -> nvme_io_mgmt_send_args
fn clone(&self) -> nvme_io_mgmt_send_args
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for nvme_io_mgmt_send_args
impl Debug for nvme_io_mgmt_send_args
Source§impl Default for nvme_io_mgmt_send_args
impl Default for nvme_io_mgmt_send_args
impl Copy for nvme_io_mgmt_send_args
Auto Trait Implementations§
impl Freeze for nvme_io_mgmt_send_args
impl RefUnwindSafe for nvme_io_mgmt_send_args
impl !Send for nvme_io_mgmt_send_args
impl !Sync for nvme_io_mgmt_send_args
impl Unpin for nvme_io_mgmt_send_args
impl UnsafeUnpin for nvme_io_mgmt_send_args
impl UnwindSafe for nvme_io_mgmt_send_args
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