pub enum MissingValueReason {
LinkNotFound,
LinkParseFailure,
LinkInvalid,
LinkNeverExpanded,
Timeout,
}
Expand description
Reasons why the value couldn’t be loaded.
Variants§
LinkNotFound
A referenced hierarchy in the link was not found.
LinkParseFailure
A linked hierarchy couldn’t be parsed.
LinkInvalid
A linked hierarchy was invalid.
LinkNeverExpanded
There was no attempt to read the link.
Timeout
There was a timeout while reading.
Trait Implementations§
Source§impl Clone for MissingValueReason
impl Clone for MissingValueReason
Source§fn clone(&self) -> MissingValueReason
fn clone(&self) -> MissingValueReason
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 moreSource§impl Debug for MissingValueReason
impl Debug for MissingValueReason
Source§impl PartialEq for MissingValueReason
impl PartialEq for MissingValueReason
impl StructuralPartialEq for MissingValueReason
Auto Trait Implementations§
impl Freeze for MissingValueReason
impl RefUnwindSafe for MissingValueReason
impl Send for MissingValueReason
impl Sync for MissingValueReason
impl Unpin for MissingValueReason
impl UnwindSafe for MissingValueReason
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,
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
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