[][src]Struct bm::ProvingState

pub struct ProvingState<V: Eq + Hash + Ord> {
    pub proofs: Map<V, (V, V)>,
    pub inserts: Set<V>,
}

Proving state.

Fields

proofs: Map<V, (V, V)>

Proofs required for operations.

inserts: Set<V>

Inserts of operations, which do not go into the proof.

Trait Implementations

impl<V: Clone + Eq + Hash + Ord> Clone for ProvingState<V>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<V: Eq + Hash + Ord> Default for ProvingState<V>[src]

impl<V: Eq + Hash + Ord> From<ProvingState<V>> for Proofs<V>[src]

impl<V: PartialEq + Eq + Hash + Ord> PartialEq<ProvingState<V>> for ProvingState<V>[src]

impl<V: Eq + Hash + Ord> Eq for ProvingState<V>[src]

impl<V: Debug + Eq + Hash + Ord> Debug for ProvingState<V>[src]

Auto Trait Implementations

impl<V> Sync for ProvingState<V> where
    V: Sync

impl<V> Send for ProvingState<V> where
    V: Send

impl<V> Unpin for ProvingState<V> where
    V: Unpin

impl<V> RefUnwindSafe for ProvingState<V> where
    V: RefUnwindSafe

impl<V> UnwindSafe for ProvingState<V> where
    V: UnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self