pub enum Peel {
NotPacked,
Inner(Vec<u8>),
}Expand description
The outcome of peeling a disk-image archive layer.
Variants§
NotPacked
Not a wrapped/single-member image — open data directly.
Inner(Vec<u8>)
One peeled bare-wrapper stream, or the single extracted archive member.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Peel
impl RefUnwindSafe for Peel
impl Send for Peel
impl Sync for Peel
impl Unpin for Peel
impl UnsafeUnpin for Peel
impl UnwindSafe for Peel
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