pub struct IdentityStatus {Show 14 fields
pub identity: AgentIdentity,
pub state: IdentityLifecycleState,
pub agent_runtime_id: Option<AgentRuntimeId>,
pub session_id: Option<SessionId>,
pub profile: Option<ProfileName>,
pub runtime_mode: Option<MobRuntimeMode>,
pub addressability: AgentAddressability,
pub display_name: Option<DisplayName>,
pub labels: BTreeMap<String, String>,
pub generation: Option<ContinuityGeneration>,
pub checkpoint_version: Option<CheckpointVersion>,
pub lease: Option<LeaseInfo>,
pub continuity_health: Option<ContinuityHealth>,
pub continuity_unrecoverable: Option<ContinuityUnrecoverable>,
}Expand description
Full status response for an identity.
Fields§
§identity: AgentIdentity§state: IdentityLifecycleState§agent_runtime_id: Option<AgentRuntimeId>§session_id: Option<SessionId>§profile: Option<ProfileName>§runtime_mode: Option<MobRuntimeMode>§addressability: AgentAddressability§display_name: Option<DisplayName>§labels: BTreeMap<String, String>§generation: Option<ContinuityGeneration>§checkpoint_version: Option<CheckpointVersion>§lease: Option<LeaseInfo>§continuity_health: Option<ContinuityHealth>§continuity_unrecoverable: Option<ContinuityUnrecoverable>Terminal heal verdict for a Broken identity (2026-07-29 incident): present when the heal authority proved the durable head unrecoverable and the continuity repair supervisor has parked the identity. Additive and optional on the wire; SDK parsers ignore unknown keys.
Trait Implementations§
Source§impl Clone for IdentityStatus
impl Clone for IdentityStatus
Source§fn clone(&self) -> IdentityStatus
fn clone(&self) -> IdentityStatus
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 IdentityStatus
impl Debug for IdentityStatus
Source§impl<'de> Deserialize<'de> for IdentityStatus
impl<'de> Deserialize<'de> for IdentityStatus
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 IdentityStatus
Source§impl PartialEq for IdentityStatus
impl PartialEq for IdentityStatus
Source§impl Serialize for IdentityStatus
impl Serialize for IdentityStatus
impl StructuralPartialEq for IdentityStatus
Auto Trait Implementations§
impl Freeze for IdentityStatus
impl RefUnwindSafe for IdentityStatus
impl Send for IdentityStatus
impl Sync for IdentityStatus
impl Unpin for IdentityStatus
impl UnsafeUnpin for IdentityStatus
impl UnwindSafe for IdentityStatus
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CoreExecutorTurnFinalizationGuard for Twhere
T: Send,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more