pub enum ChunkSource {
Build,
Dict,
Parent,
}Expand description
Source of chunk data: chunk dictionary, parent filesystem or builder.
Variants§
Build
Chunk is stored in data blob owned by current image.
Dict
A reference to a chunk in chunk dictionary.
Parent
A reference to a chunk in parent image.
Trait Implementations§
Source§impl Clone for ChunkSource
impl Clone for ChunkSource
Source§fn clone(&self) -> ChunkSource
fn clone(&self) -> ChunkSource
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 moreSource§impl Display for ChunkSource
impl Display for ChunkSource
Source§impl Hash for ChunkSource
impl Hash for ChunkSource
Source§impl PartialEq for ChunkSource
impl PartialEq for ChunkSource
impl Eq for ChunkSource
impl StructuralPartialEq for ChunkSource
Auto Trait Implementations§
impl Freeze for ChunkSource
impl RefUnwindSafe for ChunkSource
impl Send for ChunkSource
impl Sync for ChunkSource
impl Unpin for ChunkSource
impl UnwindSafe for ChunkSource
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.