pub struct Setter<Opcode, Input> { /* private fields */ }
Expand description
Implements the pattern for ioctl
s where a pointer argument is given to
the ioctl
.
The opcode must be read-only.
Implementations§
Trait Implementations§
source§impl<Opcode: CompileTimeOpcode, Input> Ioctl for Setter<Opcode, Input>
impl<Opcode: CompileTimeOpcode, Input> Ioctl for Setter<Opcode, Input>
source§const IS_MUTATING: bool = false
const IS_MUTATING: bool = false
Does the
ioctl
mutate any data in the userspace? Read moresource§fn as_ptr(&mut self) -> *mut c_void
fn as_ptr(&mut self) -> *mut c_void
Get a pointer to the data to be passed to the
ioctl
command. Read moresource§unsafe fn output_from_ptr(
_: IoctlOutput,
_: *mut c_void
) -> Result<Self::Output>
unsafe fn output_from_ptr( _: IoctlOutput, _: *mut c_void ) -> Result<Self::Output>
Cast the output data to the correct type. Read more