#[repr(C)]pub struct nvme_get_property_args {
pub value: *mut __u64,
pub args_size: c_int,
pub fd: c_int,
pub timeout: __u32,
pub offset: c_int,
}Expand description
struct nvme_get_property_args - Arguments for NVMe Get Property command @value: Where the property’s value will be stored on success @args_size: Size of &struct nvme_get_property_args @fd: File descriptor of nvme device @offset: Property offset from the base to retrieve @timeout: Timeout in ms
Fields§
§value: *mut __u64§args_size: c_int§fd: c_int§timeout: __u32§offset: c_intTrait Implementations§
Source§impl Clone for nvme_get_property_args
impl Clone for nvme_get_property_args
Source§fn clone(&self) -> nvme_get_property_args
fn clone(&self) -> nvme_get_property_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_get_property_args
impl Debug for nvme_get_property_args
Source§impl Default for nvme_get_property_args
impl Default for nvme_get_property_args
impl Copy for nvme_get_property_args
Auto Trait Implementations§
impl Freeze for nvme_get_property_args
impl RefUnwindSafe for nvme_get_property_args
impl !Send for nvme_get_property_args
impl !Sync for nvme_get_property_args
impl Unpin for nvme_get_property_args
impl UnsafeUnpin for nvme_get_property_args
impl UnwindSafe for nvme_get_property_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