pub struct CoherenceState {
pub level: CoherenceLevel,
pub checks: Vec<CoherenceCheck>,
pub violations: Vec<CoherenceViolation>,
pub strategies: Vec<CoherenceStrategy>,
pub history: Vec<CoherenceEvent>,
}Expand description
Overall coherence state across all reality domains.
Fields§
§level: CoherenceLevel§checks: Vec<CoherenceCheck>§violations: Vec<CoherenceViolation>§strategies: Vec<CoherenceStrategy>§history: Vec<CoherenceEvent>Trait Implementations§
Source§impl Clone for CoherenceState
impl Clone for CoherenceState
Source§fn clone(&self) -> CoherenceState
fn clone(&self) -> CoherenceState
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 CoherenceState
impl Debug for CoherenceState
Source§impl<'de> Deserialize<'de> for CoherenceState
impl<'de> Deserialize<'de> for CoherenceState
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
Auto Trait Implementations§
impl Freeze for CoherenceState
impl RefUnwindSafe for CoherenceState
impl Send for CoherenceState
impl Sync for CoherenceState
impl Unpin for CoherenceState
impl UnsafeUnpin for CoherenceState
impl UnwindSafe for CoherenceState
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