pub struct InstallOutcome {
pub manifest: MuragentManifest,
pub trust_level: TrustLevel,
pub fingerprint_hex: String,
pub fingerprint_words: String,
pub was_update: bool,
}Expand description
Result of a successful install or update.
Fields§
§manifest: MuragentManifest§trust_level: TrustLevel§fingerprint_hex: String§fingerprint_words: String§was_update: boolfalse when extracting into a freshly-created agent dir; true when
the agent already existed at the slug with matching UUID and the
payload was replaced in place (preserving data/).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InstallOutcome
impl RefUnwindSafe for InstallOutcome
impl Send for InstallOutcome
impl Sync for InstallOutcome
impl Unpin for InstallOutcome
impl UnsafeUnpin for InstallOutcome
impl UnwindSafe for InstallOutcome
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