pub enum VerifierError {
Show 27 variants
MalformedDag,
MissingCommitInDag,
CommitBodyNotFound,
InvalidKey,
SerializationError,
OtherError(String),
CommitLoadError(CommitLoadError),
InvalidRepositoryCommit,
MissingRepoWriteCapSecret,
StorageError(StorageError),
ObjectParseError(ObjectParseError),
NotImplemented,
InvalidSignatureObject,
MalformedSyncSignatureAcks,
MalformedSyncSignatureDeps,
TopicNotFound,
RepoNotFound,
StoreNotFound,
OverlayNotFound,
BranchNotFound,
InvalidBranch,
NoBlockStorageAvailable,
RootBranchNotFound,
BranchNotOpened,
DoubleBranchSubscription,
InvalidCommit,
LocallyConnected,
}
Variants§
MalformedDag
MissingCommitInDag
CommitBodyNotFound
InvalidKey
SerializationError
OtherError(String)
CommitLoadError(CommitLoadError)
InvalidRepositoryCommit
MissingRepoWriteCapSecret
StorageError(StorageError)
ObjectParseError(ObjectParseError)
NotImplemented
InvalidSignatureObject
MalformedSyncSignatureAcks
MalformedSyncSignatureDeps
TopicNotFound
RepoNotFound
StoreNotFound
OverlayNotFound
BranchNotFound
InvalidBranch
NoBlockStorageAvailable
RootBranchNotFound
BranchNotOpened
DoubleBranchSubscription
InvalidCommit
LocallyConnected
Trait Implementations§
Source§impl Clone for VerifierError
impl Clone for VerifierError
Source§fn clone(&self) -> VerifierError
fn clone(&self) -> VerifierError
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 VerifierError
impl Debug for VerifierError
Source§impl From<CommitLoadError> for VerifierError
impl From<CommitLoadError> for VerifierError
Source§fn from(e: CommitLoadError) -> Self
fn from(e: CommitLoadError) -> Self
Converts to this type from the input type.
Source§impl From<NgError> for VerifierError
impl From<NgError> for VerifierError
Source§impl From<ObjectParseError> for VerifierError
impl From<ObjectParseError> for VerifierError
Source§fn from(e: ObjectParseError) -> Self
fn from(e: ObjectParseError) -> Self
Converts to this type from the input type.
Source§impl From<StorageError> for VerifierError
impl From<StorageError> for VerifierError
Source§fn from(e: StorageError) -> Self
fn from(e: StorageError) -> Self
Converts to this type from the input type.
Source§impl From<VerifierError> for NgError
impl From<VerifierError> for NgError
Source§fn from(e: VerifierError) -> Self
fn from(e: VerifierError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for VerifierError
impl PartialEq for VerifierError
impl Eq for VerifierError
impl StructuralPartialEq for VerifierError
Auto Trait Implementations§
impl Freeze for VerifierError
impl RefUnwindSafe for VerifierError
impl Send for VerifierError
impl Sync for VerifierError
impl Unpin for VerifierError
impl UnwindSafe for VerifierError
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