pub enum BackendTrustLevel {
Trusted,
Untrusted,
}
Expand description
Storage backend trust level.
Variants§
Trusted
Panics from trusted backends are considered justified, and never caught.
Untrusted
Panics from untrusted backend are caught and interpreted as runtime error. Untrusted backend may be missing some parts of the trie, so panics are not considered fatal.
Trait Implementations§
source§impl Clone for BackendTrustLevel
impl Clone for BackendTrustLevel
source§fn clone(&self) -> BackendTrustLevel
fn clone(&self) -> BackendTrustLevel
Returns a copy 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 moreAuto Trait Implementations§
impl RefUnwindSafe for BackendTrustLevel
impl Send for BackendTrustLevel
impl Sync for BackendTrustLevel
impl Unpin for BackendTrustLevel
impl UnwindSafe for BackendTrustLevel
Blanket Implementations§
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.