pub struct FormatReadPlan<'a, S: Storage + 'static> { /* private fields */ }Expand description
Resolved read plan for a disk image range.
A read plan describes how a requested image range maps to storage ranges, zero-filled ranges, end-of-file ranges, or special format-driver ranges. It does not issue I/O and does not allocate or modify image metadata.
Implementations§
Source§impl<'a, S: Storage + 'static> FormatReadPlan<'a, S>
impl<'a, S: Storage + 'static> FormatReadPlan<'a, S>
Trait Implementations§
Auto Trait Implementations§
impl<'a, S> !RefUnwindSafe for FormatReadPlan<'a, S>
impl<'a, S> !UnwindSafe for FormatReadPlan<'a, S>
impl<'a, S> Freeze for FormatReadPlan<'a, S>
impl<'a, S> Send for FormatReadPlan<'a, S>
impl<'a, S> Sync for FormatReadPlan<'a, S>
impl<'a, S> Unpin for FormatReadPlan<'a, S>
impl<'a, S> UnsafeUnpin for FormatReadPlan<'a, S>
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