pub struct AddToStoreNar {
pub path: StorePath,
pub deriver: StorePath,
pub nar_hash: NixString,
pub references: StorePathSet,
pub registration_time: u64,
pub nar_size: u64,
pub ultimate: bool,
pub sigs: StringSet,
pub content_address: NixString,
pub repair: bool,
pub dont_check_sigs: bool,
}
Fields§
§path: StorePath
§deriver: StorePath
§nar_hash: NixString
§references: StorePathSet
§registration_time: u64
§nar_size: u64
§ultimate: bool
§sigs: StringSet
§content_address: NixString
§repair: bool
§dont_check_sigs: bool
Trait Implementations§
Source§impl Clone for AddToStoreNar
impl Clone for AddToStoreNar
Source§fn clone(&self) -> AddToStoreNar
fn clone(&self) -> AddToStoreNar
Returns a copy 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 AddToStoreNar
impl Debug for AddToStoreNar
Source§impl<'de> Deserialize<'de> for AddToStoreNar
impl<'de> Deserialize<'de> for AddToStoreNar
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
Auto Trait Implementations§
impl Freeze for AddToStoreNar
impl RefUnwindSafe for AddToStoreNar
impl Send for AddToStoreNar
impl Sync for AddToStoreNar
impl Unpin for AddToStoreNar
impl UnwindSafe for AddToStoreNar
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