Struct IoctlReqRead

Source
pub struct IoctlReqRead<Device: IoDevice, Result>
where *mut Result: AsRawV, Result: Copy,
{ /* private fields */ }
Expand description

Implementation of IoctlReq with a fixed cmd value and passing a pointer to a zeroed memory block of type Result directly through to the underlying system call and then returnin a copy of that memory.

Trait Implementations§

Source§

impl<Device: IoDevice, Result: Copy> Clone for IoctlReqRead<Device, Result>

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a, Device, Result> IoctlReq<'a, Device> for IoctlReqRead<Device, Result>
where *mut Result: AsRawV, Result: 'a + Copy, Device: 'a + IoDevice,

Source§

type ExtArg = ()

The type that the caller will provide when using this ioctl command. Read more
Source§

type TempMem = Result

The type of some temporary memory that the request needs to do its work. Read more
Source§

type RawArg = *mut Result

The type of argument that will be passed to the raw system call.
Source§

type Result = Result

The type of the result of the fcntl call.
Source§

fn prepare_ioctl_args( &self, _: &Self::ExtArg, temp_mem: &mut MaybeUninit<Self::TempMem>, ) -> (ulong, Self::RawArg)

Prepare the cmd and arg values for a ioctl system call. Read more
Source§

fn prepare_ioctl_result( &self, _: int, _: &Self::ExtArg, temp_mem: &MaybeUninit<Self::TempMem>, ) -> Self::Result

Prepare a raw successful result from a ioctl call to be returned.
Source§

impl<Device: IoDevice, Result: Copy> Copy for IoctlReqRead<Device, Result>

Auto Trait Implementations§

§

impl<Device, Result> Freeze for IoctlReqRead<Device, Result>

§

impl<Device, Result> RefUnwindSafe for IoctlReqRead<Device, Result>
where *mut Result: Sized, Device: RefUnwindSafe, Result: RefUnwindSafe,

§

impl<Device, Result> Send for IoctlReqRead<Device, Result>
where *mut Result: Sized, Device: Send, Result: Send,

§

impl<Device, Result> Sync for IoctlReqRead<Device, Result>
where *mut Result: Sized, Device: Sync, Result: Sync,

§

impl<Device, Result> Unpin for IoctlReqRead<Device, Result>
where *mut Result: Sized, Device: Unpin, Result: Unpin,

§

impl<Device, Result> UnwindSafe for IoctlReqRead<Device, Result>
where *mut Result: Sized, Device: UnwindSafe, Result: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.