pub struct PerContextAccumulatorStore {
pub first: ContextAccumulator,
pub second: ContextAccumulator,
}Expand description
A deterministic two-context store for the story #155 contract fixture.
Fields§
§first: ContextAccumulator§second: ContextAccumulatorTrait Implementations§
Source§impl Clone for PerContextAccumulatorStore
impl Clone for PerContextAccumulatorStore
Source§fn clone(&self) -> PerContextAccumulatorStore
fn clone(&self) -> PerContextAccumulatorStore
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 moreimpl Copy for PerContextAccumulatorStore
Source§impl Debug for PerContextAccumulatorStore
impl Debug for PerContextAccumulatorStore
Source§impl PartialEq for PerContextAccumulatorStore
impl PartialEq for PerContextAccumulatorStore
Source§fn eq(&self, other: &PerContextAccumulatorStore) -> bool
fn eq(&self, other: &PerContextAccumulatorStore) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PerContextAccumulatorStore
Auto Trait Implementations§
impl Freeze for PerContextAccumulatorStore
impl RefUnwindSafe for PerContextAccumulatorStore
impl Send for PerContextAccumulatorStore
impl Sync for PerContextAccumulatorStore
impl Unpin for PerContextAccumulatorStore
impl UnsafeUnpin for PerContextAccumulatorStore
impl UnwindSafe for PerContextAccumulatorStore
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