pub struct InstallOutcome {
pub manifest: MuragentManifest,
pub trust_level: TrustLevel,
pub fingerprint_hex: String,
pub fingerprint_words: String,
pub was_update: bool,
pub downgraded_broad_egress: Vec<String>,
}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/).
downgraded_broad_egress: Vec<String>Names of MCP servers whose network.mode was downgraded from
BroadAudited to Inherit (with authorization cleared) during this
install. A bundle author’s broad-egress grant is tied to a local
operator (Task 3) and must not travel with the bundle; empty when
nothing was downgraded.
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