pub enum FleetEventKind {
TopologyLoaded,
ConnectionOpened,
ConnectionInvalidated,
CommandStarted,
CommandCompleted,
TransferStarted,
TransferCompleted,
Cancelled,
TimedOut,
}Expand description
Stable fleet lifecycle event category.
Variants§
TopologyLoaded
A topology snapshot was loaded.
ConnectionOpened
A connection was opened for one exact revision.
ConnectionInvalidated
A cached connection was invalidated.
CommandStarted
Command execution began.
CommandCompleted
Command execution completed.
TransferStarted
Transfer began.
TransferCompleted
Transfer completed.
Cancelled
One target was cancelled.
TimedOut
One target exceeded its deadline.
Trait Implementations§
Source§impl Clone for FleetEventKind
impl Clone for FleetEventKind
Source§fn clone(&self) -> FleetEventKind
fn clone(&self) -> FleetEventKind
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 FleetEventKind
impl Debug for FleetEventKind
Source§impl<'de> Deserialize<'de> for FleetEventKind
impl<'de> Deserialize<'de> for FleetEventKind
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
Source§impl PartialEq for FleetEventKind
impl PartialEq for FleetEventKind
Source§fn eq(&self, other: &FleetEventKind) -> bool
fn eq(&self, other: &FleetEventKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FleetEventKind
impl Serialize for FleetEventKind
impl Copy for FleetEventKind
impl Eq for FleetEventKind
impl StructuralPartialEq for FleetEventKind
Auto Trait Implementations§
impl Freeze for FleetEventKind
impl RefUnwindSafe for FleetEventKind
impl Send for FleetEventKind
impl Sync for FleetEventKind
impl Unpin for FleetEventKind
impl UnsafeUnpin for FleetEventKind
impl UnwindSafe for FleetEventKind
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.