pub struct FaultRecord {
pub code: EngineErrorCode,
pub actor: Option<u8>,
pub fingerprint: u64,
pub source: FaultSource,
pub reward_emitted: bool,
}Expand description
Latched per-env runtime fault metadata.
Fields§
§code: EngineErrorCodeEngine error classification.
actor: Option<u8>Perspective player associated with the fault (if any).
fingerprint: u64Stable fingerprint for identifying the fault source.
source: FaultSourceOperation that produced the fault.
reward_emitted: boolWhether a reward was already emitted for this fault.
Trait Implementations§
Source§impl Clone for FaultRecord
impl Clone for FaultRecord
Source§fn clone(&self) -> FaultRecord
fn clone(&self) -> FaultRecord
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 moreSource§impl Debug for FaultRecord
impl Debug for FaultRecord
Source§impl PartialEq for FaultRecord
impl PartialEq for FaultRecord
impl Copy for FaultRecord
impl Eq for FaultRecord
impl StructuralPartialEq for FaultRecord
Auto Trait Implementations§
impl Freeze for FaultRecord
impl RefUnwindSafe for FaultRecord
impl Send for FaultRecord
impl Sync for FaultRecord
impl Unpin for FaultRecord
impl UnwindSafe for FaultRecord
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> 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