pub enum VerifierError {
Show 37 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,
InvalidTriple,
InvalidNamedGraph,
OxigraphError(String),
CannotRemoveTriplesWhenNewBranch,
PermissionDenied,
YrsError(String),
AutomergeError(String),
InvalidNuri,
InvalidJson,
NothingToSign,
}
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
InvalidTriple
InvalidNamedGraph
OxigraphError(String)
CannotRemoveTriplesWhenNewBranch
PermissionDenied
YrsError(String)
AutomergeError(String)
InvalidNuri
InvalidJson
NothingToSign
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 Display for VerifierError
impl Display for VerifierError
Source§impl Error for VerifierError
impl Error for VerifierError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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<Error> for VerifierError
impl From<Error> for VerifierError
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