pub struct UnkeyedValidPathInfo {
pub deriver: Option<StorePath<String>>,
pub nar_hash: NarHash,
pub references: Vec<StorePath<String>>,
pub registration_time: u64,
pub nar_size: u64,
pub ultimate: bool,
pub signatures: Vec<Signature<String>>,
pub ca: Option<CAHash>,
}Available on crate feature
daemon only.Fields§
§deriver: Option<StorePath<String>>§nar_hash: NarHash§references: Vec<StorePath<String>>§registration_time: u64§nar_size: u64§ultimate: bool§signatures: Vec<Signature<String>>§ca: Option<CAHash>Trait Implementations§
Source§impl Clone for UnkeyedValidPathInfo
impl Clone for UnkeyedValidPathInfo
Source§fn clone(&self) -> UnkeyedValidPathInfo
fn clone(&self) -> UnkeyedValidPathInfo
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 UnkeyedValidPathInfo
impl Debug for UnkeyedValidPathInfo
Source§impl NixDeserialize for UnkeyedValidPathInfo
impl NixDeserialize for UnkeyedValidPathInfo
Source§impl NixSerialize for UnkeyedValidPathInfo
impl NixSerialize for UnkeyedValidPathInfo
Source§impl PartialEq for UnkeyedValidPathInfo
impl PartialEq for UnkeyedValidPathInfo
Source§fn eq(&self, other: &UnkeyedValidPathInfo) -> bool
fn eq(&self, other: &UnkeyedValidPathInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UnkeyedValidPathInfo
Auto Trait Implementations§
impl Freeze for UnkeyedValidPathInfo
impl RefUnwindSafe for UnkeyedValidPathInfo
impl Send for UnkeyedValidPathInfo
impl Sync for UnkeyedValidPathInfo
impl Unpin for UnkeyedValidPathInfo
impl UnsafeUnpin for UnkeyedValidPathInfo
impl UnwindSafe for UnkeyedValidPathInfo
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