pub struct InstalledLayer {
pub digest: String,
pub layer: LayerId,
pub channel: String,
pub root: PathBuf,
}Expand description
One layer present in the core.
Fields§
§digest: Stringsha256:<hex> of the manifest bytes — the store key.
layer: LayerIdThe layer identity from the manifest annotations.
channel: StringThe channel annotation (qualified / rolling), verbatim.
root: PathBufRoot directory of this layer in the core.
Trait Implementations§
Source§impl Clone for InstalledLayer
impl Clone for InstalledLayer
Source§fn clone(&self) -> InstalledLayer
fn clone(&self) -> InstalledLayer
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InstalledLayer
impl Debug for InstalledLayer
impl Eq for InstalledLayer
Source§impl PartialEq for InstalledLayer
impl PartialEq for InstalledLayer
impl StructuralPartialEq for InstalledLayer
Auto Trait Implementations§
impl Freeze for InstalledLayer
impl RefUnwindSafe for InstalledLayer
impl Send for InstalledLayer
impl Sync for InstalledLayer
impl Unpin for InstalledLayer
impl UnsafeUnpin for InstalledLayer
impl UnwindSafe for InstalledLayer
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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