#[non_exhaustive]pub struct PreviousMemberCleanupReport {
pub identity: AgentIdentity,
pub retire_attempted: bool,
pub retire_error: Option<String>,
pub confirmatory_observation_attempted: bool,
pub confirmatory_observation: Option<String>,
pub destroy_attempted: bool,
pub destroy_error: Option<String>,
/* private fields */
}Expand description
Structured evidence captured when respawn cannot prove the old member is gone.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.identity: AgentIdentityStable member identity.
retire_attempted: boolWhether graceful retire was attempted.
retire_error: Option<String>Error returned from the graceful retire attempt, when any.
confirmatory_observation_attempted: boolWhether a confirmatory observation probe was attempted.
confirmatory_observation: Option<String>Observation probe detail, when any.
destroy_attempted: boolWhether force-destroy was attempted.
destroy_error: Option<String>Error returned from the force-destroy attempt, when any.
Trait Implementations§
Source§impl Clone for PreviousMemberCleanupReport
impl Clone for PreviousMemberCleanupReport
Source§fn clone(&self) -> PreviousMemberCleanupReport
fn clone(&self) -> PreviousMemberCleanupReport
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 PreviousMemberCleanupReport
impl Debug for PreviousMemberCleanupReport
Auto Trait Implementations§
impl Freeze for PreviousMemberCleanupReport
impl RefUnwindSafe for PreviousMemberCleanupReport
impl Send for PreviousMemberCleanupReport
impl Sync for PreviousMemberCleanupReport
impl Unpin for PreviousMemberCleanupReport
impl UnsafeUnpin for PreviousMemberCleanupReport
impl UnwindSafe for PreviousMemberCleanupReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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