pub struct FaultCause {
pub event_id: u64,
pub tick: u64,
pub node_id: u64,
pub fault_type: String,
pub details: String,
}Expand description
A fault event identified as a potential root cause.
Fields§
§event_id: u64§tick: u64§node_id: u64§fault_type: String§details: StringTrait Implementations§
Source§impl Clone for FaultCause
impl Clone for FaultCause
Source§fn clone(&self) -> FaultCause
fn clone(&self) -> FaultCause
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FaultCause
impl RefUnwindSafe for FaultCause
impl Send for FaultCause
impl Sync for FaultCause
impl Unpin for FaultCause
impl UnsafeUnpin for FaultCause
impl UnwindSafe for FaultCause
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