pub struct PackageLock {
pub name: String,
pub version: String,
pub system: String,
pub url: String,
pub provides: Vec<String>,
pub sha256: String,
pub signature: Option<String>,
pub installed: bool,
}Fields§
§name: String§version: String§system: String§url: String§provides: Vec<String>§sha256: String§signature: Option<String>§installed: boolIf true, this package is already present in the container and does not need to be installed. It’s only in the lockfile to make the repro-env.lock diff easier to read and help git’s delta-compression.
Trait Implementations§
Source§impl Clone for PackageLock
impl Clone for PackageLock
Source§fn clone(&self) -> PackageLock
fn clone(&self) -> PackageLock
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 PackageLock
impl Debug for PackageLock
Source§impl<'de> Deserialize<'de> for PackageLock
impl<'de> Deserialize<'de> for PackageLock
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 PackageLock
impl PartialEq for PackageLock
Source§impl Serialize for PackageLock
impl Serialize for PackageLock
impl StructuralPartialEq for PackageLock
Auto Trait Implementations§
impl Freeze for PackageLock
impl RefUnwindSafe for PackageLock
impl Send for PackageLock
impl Sync for PackageLock
impl Unpin for PackageLock
impl UnsafeUnpin for PackageLock
impl UnwindSafe for PackageLock
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