pub struct AsyncLogicalUnit {
pub last_lba: u64,
pub block_size: u32,
pub read_only: bool,
pub disk_image: Box<dyn AsyncDisk>,
}Expand description
A logical unit with an AsyncDisk as the disk.
Fields§
§last_lba: u64§block_size: u32§read_only: bool§disk_image: Box<dyn AsyncDisk>Auto Trait Implementations§
impl Freeze for AsyncLogicalUnit
impl !RefUnwindSafe for AsyncLogicalUnit
impl !Send for AsyncLogicalUnit
impl !Sync for AsyncLogicalUnit
impl Unpin for AsyncLogicalUnit
impl !UnwindSafe for AsyncLogicalUnit
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