pub struct CdmmDevice {
pub dev_type: u8,
pub dev_size: u8,
pub dev_rev: u8,
pub drb_offset: usize,
pub user_write: bool,
pub user_read: bool,
pub super_write: bool,
pub super_read: bool,
}Fields§
§dev_type: u8§dev_size: u8§dev_rev: u8§drb_offset: usize§user_write: bool§user_read: bool§super_write: bool§super_read: boolTrait Implementations§
Source§impl Clone for CdmmDevice
impl Clone for CdmmDevice
Source§fn clone(&self) -> CdmmDevice
fn clone(&self) -> CdmmDevice
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for CdmmDevice
impl RefUnwindSafe for CdmmDevice
impl Send for CdmmDevice
impl Sync for CdmmDevice
impl Unpin for CdmmDevice
impl UnsafeUnpin for CdmmDevice
impl UnwindSafe for CdmmDevice
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