pub struct CondaPackagePin {
pub name: String,
pub version: String,
pub build: String,
pub channel: String,
pub sha256: String,
}Expand description
Exact conda package that a layer was built from.
Fields§
§name: String§version: String§build: String§channel: String§sha256: Stringsha256 of the .conda / .tar.bz2 archive (hex, no prefix).
Trait Implementations§
Source§impl Clone for CondaPackagePin
impl Clone for CondaPackagePin
Source§fn clone(&self) -> CondaPackagePin
fn clone(&self) -> CondaPackagePin
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 Debug for CondaPackagePin
impl Debug for CondaPackagePin
Source§impl<'de> Deserialize<'de> for CondaPackagePin
impl<'de> Deserialize<'de> for CondaPackagePin
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CondaPackagePin
impl PartialEq for CondaPackagePin
Source§impl Serialize for CondaPackagePin
impl Serialize for CondaPackagePin
impl Eq for CondaPackagePin
impl StructuralPartialEq for CondaPackagePin
Auto Trait Implementations§
impl Freeze for CondaPackagePin
impl RefUnwindSafe for CondaPackagePin
impl Send for CondaPackagePin
impl Sync for CondaPackagePin
impl Unpin for CondaPackagePin
impl UnsafeUnpin for CondaPackagePin
impl UnwindSafe for CondaPackagePin
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