pub enum TraceSkipReason {
Unchanged {
hash: u64,
},
NoInstances,
TransportUnavailable {
name: String,
},
}Expand description
Why a config write was skipped (trace mirror of apply types).
Variants§
Trait Implementations§
Source§impl Clone for TraceSkipReason
impl Clone for TraceSkipReason
Source§fn clone(&self) -> TraceSkipReason
fn clone(&self) -> TraceSkipReason
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 TraceSkipReason
impl Debug for TraceSkipReason
Source§impl<'de> Deserialize<'de> for TraceSkipReason
impl<'de> Deserialize<'de> for TraceSkipReason
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 TraceSkipReason
Source§impl From<SkipReason> for TraceSkipReason
impl From<SkipReason> for TraceSkipReason
Source§fn from(s: SkipReason) -> Self
fn from(s: SkipReason) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TraceSkipReason
impl PartialEq for TraceSkipReason
Source§impl Serialize for TraceSkipReason
impl Serialize for TraceSkipReason
impl StructuralPartialEq for TraceSkipReason
Auto Trait Implementations§
impl Freeze for TraceSkipReason
impl RefUnwindSafe for TraceSkipReason
impl Send for TraceSkipReason
impl Sync for TraceSkipReason
impl Unpin for TraceSkipReason
impl UnsafeUnpin for TraceSkipReason
impl UnwindSafe for TraceSkipReason
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