pub struct StateSummary {
pub state_vector: StateVector,
pub current_attempt_index: AttemptIndex,
}Expand description
Summary of state after a mutation, returned by many functions.
Fields§
§state_vector: StateVector§current_attempt_index: AttemptIndexTrait Implementations§
Source§impl Clone for StateSummary
impl Clone for StateSummary
Source§fn clone(&self) -> StateSummary
fn clone(&self) -> StateSummary
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 StateSummary
impl Debug for StateSummary
Source§impl<'de> Deserialize<'de> for StateSummary
impl<'de> Deserialize<'de> for StateSummary
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 StateSummary
impl PartialEq for StateSummary
Source§impl Serialize for StateSummary
impl Serialize for StateSummary
impl Eq for StateSummary
impl StructuralPartialEq for StateSummary
Auto Trait Implementations§
impl Freeze for StateSummary
impl RefUnwindSafe for StateSummary
impl Send for StateSummary
impl Sync for StateSummary
impl Unpin for StateSummary
impl UnsafeUnpin for StateSummary
impl UnwindSafe for StateSummary
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