pub enum StateTreeValidationError {
NotAllPartitionsAreFoundInBothHashesAndDatabase,
MismatchInPartitionSubstates(DbPartitionKey),
}Variants§
NotAllPartitionsAreFoundInBothHashesAndDatabase
MismatchInPartitionSubstates(DbPartitionKey)
Trait Implementations§
Source§impl Clone for StateTreeValidationError
impl Clone for StateTreeValidationError
Source§fn clone(&self) -> StateTreeValidationError
fn clone(&self) -> StateTreeValidationError
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 moreSource§impl Debug for StateTreeValidationError
impl Debug for StateTreeValidationError
impl Eq for StateTreeValidationError
Source§impl Hash for StateTreeValidationError
impl Hash for StateTreeValidationError
Source§impl Ord for StateTreeValidationError
impl Ord for StateTreeValidationError
Source§fn cmp(&self, other: &StateTreeValidationError) -> Ordering
fn cmp(&self, other: &StateTreeValidationError) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StateTreeValidationError
impl PartialEq for StateTreeValidationError
Source§fn eq(&self, other: &StateTreeValidationError) -> bool
fn eq(&self, other: &StateTreeValidationError) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for StateTreeValidationError
impl PartialOrd for StateTreeValidationError
impl StructuralPartialEq for StateTreeValidationError
Auto Trait Implementations§
impl Freeze for StateTreeValidationError
impl RefUnwindSafe for StateTreeValidationError
impl Send for StateTreeValidationError
impl Sync for StateTreeValidationError
impl Unpin for StateTreeValidationError
impl UnsafeUnpin for StateTreeValidationError
impl UnwindSafe for StateTreeValidationError
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<T, U> ContextualTryInto<U> for Twhere
U: ContextualTryFrom<T>,
impl<T, U> ContextualTryInto<U> for Twhere
U: ContextualTryFrom<T>,
type Error = <U as ContextualTryFrom<T>>::Error
type Context = <U as ContextualTryFrom<T>>::Context
fn contextual_try_into( self, context: &<U as ContextualTryFrom<T>>::Context, ) -> Result<U, <U as ContextualTryFrom<T>>::Error>
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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