pub struct PackInstallIntent {
pub version: u32,
pub install_id: String,
pub pack_name: String,
pub phase: PackInstallPhase,
pub created_unix: i64,
}Expand description
Durable intent for a single pack+index install (identifiers only).
Fields§
§version: u32§install_id: String§pack_name: StringContent-addressed pack stem (blake3 hex of pack bytes).
phase: PackInstallPhase§created_unix: i64Implementations§
Trait Implementations§
Source§impl Clone for PackInstallIntent
impl Clone for PackInstallIntent
Source§fn clone(&self) -> PackInstallIntent
fn clone(&self) -> PackInstallIntent
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 PackInstallIntent
impl Debug for PackInstallIntent
Source§impl<'de> Deserialize<'de> for PackInstallIntent
impl<'de> Deserialize<'de> for PackInstallIntent
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
impl Eq for PackInstallIntent
Source§impl PartialEq for PackInstallIntent
impl PartialEq for PackInstallIntent
Source§impl Serialize for PackInstallIntent
impl Serialize for PackInstallIntent
impl StructuralPartialEq for PackInstallIntent
Auto Trait Implementations§
impl Freeze for PackInstallIntent
impl RefUnwindSafe for PackInstallIntent
impl Send for PackInstallIntent
impl Sync for PackInstallIntent
impl Unpin for PackInstallIntent
impl UnsafeUnpin for PackInstallIntent
impl UnwindSafe for PackInstallIntent
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