pub struct MiscDeviceOptions {
    pub name: &'static CStr,
}Expand description
Options for creating a misc device.
Fields§
§name: &'static CStrThe name of the miscdevice.
Implementations§
Source§impl MiscDeviceOptions
 
impl MiscDeviceOptions
Sourcepub const fn into_raw<T: MiscDevice>(self) -> miscdevice
 
pub const fn into_raw<T: MiscDevice>(self) -> miscdevice
Create a raw struct miscdev ready for registration.
Trait Implementations§
Source§impl Clone for MiscDeviceOptions
 
impl Clone for MiscDeviceOptions
Source§fn clone(&self) -> MiscDeviceOptions
 
fn clone(&self) -> MiscDeviceOptions
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreimpl Copy for MiscDeviceOptions
Auto Trait Implementations§
impl Freeze for MiscDeviceOptions
impl RefUnwindSafe for MiscDeviceOptions
impl Send for MiscDeviceOptions
impl Sync for MiscDeviceOptions
impl Unpin for MiscDeviceOptions
impl UnwindSafe for MiscDeviceOptions
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