Struct rustix::ioctl::ReadWriteOpcode
source · pub struct ReadWriteOpcode<const GROUP: u8, const NUM: u8, Data>(/* private fields */);
Expand description
Provides a read/write code at compile time.
This corresponds to the C macro _IOWR(GROUP, NUM, Data)
.
Trait Implementations§
source§impl<const GROUP: u8, const NUM: u8, Data> CompileTimeOpcode for ReadWriteOpcode<GROUP, NUM, Data>
impl<const GROUP: u8, const NUM: u8, Data> CompileTimeOpcode for ReadWriteOpcode<GROUP, NUM, Data>
Auto Trait Implementations§
impl<const GROUP: u8, const NUM: u8, Data> Freeze for ReadWriteOpcode<GROUP, NUM, Data>where
Data: Freeze,
impl<const GROUP: u8, const NUM: u8, Data> RefUnwindSafe for ReadWriteOpcode<GROUP, NUM, Data>where
Data: RefUnwindSafe,
impl<const GROUP: u8, const NUM: u8, Data> Send for ReadWriteOpcode<GROUP, NUM, Data>where
Data: Send,
impl<const GROUP: u8, const NUM: u8, Data> Sync for ReadWriteOpcode<GROUP, NUM, Data>where
Data: Sync,
impl<const GROUP: u8, const NUM: u8, Data> Unpin for ReadWriteOpcode<GROUP, NUM, Data>where
Data: Unpin,
impl<const GROUP: u8, const NUM: u8, Data> UnwindSafe for ReadWriteOpcode<GROUP, NUM, Data>where
Data: UnwindSafe,
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