Struct rustix::ioctl::Setter

source ·
pub struct Setter<Opcode, Input> { /* private fields */ }
Expand description

Implements the pattern for ioctls where a pointer argument is given to the ioctl.

The opcode must be read-only.

Implementations§

source§

impl<Opcode: CompileTimeOpcode, Input> Setter<Opcode, Input>

source

pub unsafe fn new(input: Input) -> Self

Create a new pointer setter-style ioctl object.

§Safety
  • Opcode must provide a valid opcode.
  • For this opcode, Input must be the type that the kernel expects to get.

Trait Implementations§

source§

impl<Opcode: CompileTimeOpcode, Input: Debug> Debug for Setter<Opcode, Input>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<Opcode: CompileTimeOpcode, Input> Ioctl for Setter<Opcode, Input>

§

type Output = ()

The type of the output data. Read more
source§

const IS_MUTATING: bool = false

Does the ioctl mutate any data in the userspace? Read more
source§

const OPCODE: Opcode = Opcode::OPCODE

The opcode used by this ioctl command. Read more
source§

fn as_ptr(&mut self) -> *mut c_void

Get a pointer to the data to be passed to the ioctl command. Read more
source§

unsafe fn output_from_ptr( _: IoctlOutput, _: *mut c_void, ) -> Result<Self::Output>

Cast the output data to the correct type. Read more

Auto Trait Implementations§

§

impl<Opcode, Input> Freeze for Setter<Opcode, Input>
where Input: Freeze,

§

impl<Opcode, Input> RefUnwindSafe for Setter<Opcode, Input>
where Input: RefUnwindSafe, Opcode: RefUnwindSafe,

§

impl<Opcode, Input> Send for Setter<Opcode, Input>
where Input: Send, Opcode: Send,

§

impl<Opcode, Input> Sync for Setter<Opcode, Input>
where Input: Sync, Opcode: Sync,

§

impl<Opcode, Input> Unpin for Setter<Opcode, Input>
where Input: Unpin, Opcode: Unpin,

§

impl<Opcode, Input> UnwindSafe for Setter<Opcode, Input>
where Input: UnwindSafe, Opcode: 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> 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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.