Struct IoctlReqWriteRead

Source
pub struct IoctlReqWriteRead<Device: IoDevice, Arg, Result = int>{ /* private fields */ }

Trait Implementations§

Source§

impl<Device: IoDevice, Arg, Result> Clone for IoctlReqWriteRead<Device, Arg, 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, Arg, Result> IoctlReq<'a, Device> for IoctlReqWriteRead<Device, Arg, Result>
where Device: IoDevice + 'a, *const Arg: AsRawV, Arg: 'a, Result: 'a + FromIoctlResult<int>,

Source§

type ExtArg = &'a mut Arg

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

type TempMem = ()

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

type RawArg = *mut Arg

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, arg: &Self::ExtArg, _: &mut MaybeUninit<Self::TempMem>, ) -> (ulong, *mut Arg)

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

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

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

impl<Device: IoDevice, Arg, Result> Copy for IoctlReqWriteRead<Device, Arg, Result>

Auto Trait Implementations§

§

impl<Device, Arg, Result> Freeze for IoctlReqWriteRead<Device, Arg, Result>

§

impl<Device, Arg, Result> RefUnwindSafe for IoctlReqWriteRead<Device, Arg, Result>
where *const Arg: Sized, Device: RefUnwindSafe, Arg: RefUnwindSafe, Result: RefUnwindSafe,

§

impl<Device, Arg, Result> Send for IoctlReqWriteRead<Device, Arg, Result>
where *const Arg: Sized, Device: Send, Arg: Send, Result: Send,

§

impl<Device, Arg, Result> Sync for IoctlReqWriteRead<Device, Arg, Result>
where *const Arg: Sized, Device: Sync, Arg: Sync, Result: Sync,

§

impl<Device, Arg, Result> Unpin for IoctlReqWriteRead<Device, Arg, Result>
where *const Arg: Sized, Device: Unpin, Arg: Unpin, Result: Unpin,

§

impl<Device, Arg, Result> UnwindSafe for IoctlReqWriteRead<Device, Arg, Result>
where *const Arg: Sized, Device: UnwindSafe, Arg: 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.