pub enum ExplodedImage {
Ram(Vec<Bytes>),
FsRead(ReadSlice),
MemMap(MemHandle<Mmap>),
}Expand description
Exploded representation of the possible BodyImage states, obtained via
BodyImage::explode().
Variants§
Auto Trait Implementations§
impl !Freeze for ExplodedImage
impl RefUnwindSafe for ExplodedImage
impl Send for ExplodedImage
impl Sync for ExplodedImage
impl Unpin for ExplodedImage
impl UnsafeUnpin for ExplodedImage
impl UnwindSafe for ExplodedImage
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