pub enum EntryBuilderError {
MissingNamespaceId,
MissingSubespaceId,
MissingPath,
MissingTimestamp,
MissingPayloadLength,
MissingPayloadDigest,
}Expand description
Everything that can go wrong when trying to build an Entry.
Variants§
MissingNamespaceId
The builder was not configured with a namespace id.
MissingSubespaceId
The builder was not configured with a subspace id.
MissingPath
The builder was not configured with a path.
MissingTimestamp
The builder was not configured with a timestamp.
MissingPayloadLength
The builder was not configured with a payload length.
MissingPayloadDigest
The builder was not configured with a payload digest.
Trait Implementations§
Source§impl Debug for EntryBuilderError
impl Debug for EntryBuilderError
Source§impl Hash for EntryBuilderError
impl Hash for EntryBuilderError
Source§impl Ord for EntryBuilderError
impl Ord for EntryBuilderError
Source§fn cmp(&self, other: &EntryBuilderError) -> Ordering
fn cmp(&self, other: &EntryBuilderError) -> Ordering
1.21.0 · 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 EntryBuilderError
impl PartialEq for EntryBuilderError
Source§impl PartialOrd for EntryBuilderError
impl PartialOrd for EntryBuilderError
impl Eq for EntryBuilderError
impl StructuralPartialEq for EntryBuilderError
Auto Trait Implementations§
impl Freeze for EntryBuilderError
impl RefUnwindSafe for EntryBuilderError
impl Send for EntryBuilderError
impl Sync for EntryBuilderError
impl Unpin for EntryBuilderError
impl UnwindSafe for EntryBuilderError
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