pub enum BranchError<StorageError> {
NewGroup(NewGroupError<StorageError>),
CreateCommit(CreateCommitError),
CommitBuilderStage(CommitBuilderStageError<StorageError>),
}Available on 32-bit or 64-bit only.
Expand description
Indicates an error occurred while creating a sub-group branch with
BranchGroupBuilder::build_branch.
Variants§
NewGroup(NewGroupError<StorageError>)
An error occurred while creating the sub-group.
CreateCommit(CreateCommitError)
An error occurred while creating the branch commit.
CommitBuilderStage(CommitBuilderStageError<StorageError>)
An error occurred while staging the branch commit.
Trait Implementations§
Source§impl<StorageError: Debug> Debug for BranchError<StorageError>
impl<StorageError: Debug> Debug for BranchError<StorageError>
Source§impl<StorageError> Display for BranchError<StorageError>
impl<StorageError> Display for BranchError<StorageError>
Source§impl<StorageError> Error for BranchError<StorageError>where
NewGroupError<StorageError>: Error,
CommitBuilderStageError<StorageError>: Error,
Self: Debug + Display,
impl<StorageError> Error for BranchError<StorageError>where
NewGroupError<StorageError>: Error,
CommitBuilderStageError<StorageError>: Error,
Self: Debug + Display,
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<StorageError> From<CommitBuilderStageError<StorageError>> for BranchError<StorageError>
impl<StorageError> From<CommitBuilderStageError<StorageError>> for BranchError<StorageError>
Source§fn from(source: CommitBuilderStageError<StorageError>) -> Self
fn from(source: CommitBuilderStageError<StorageError>) -> Self
Converts to this type from the input type.
Source§impl<StorageError> From<CreateCommitError> for BranchError<StorageError>
impl<StorageError> From<CreateCommitError> for BranchError<StorageError>
Source§fn from(source: CreateCommitError) -> Self
fn from(source: CreateCommitError) -> Self
Converts to this type from the input type.
Source§impl<StorageError> From<NewGroupError<StorageError>> for BranchError<StorageError>
impl<StorageError> From<NewGroupError<StorageError>> for BranchError<StorageError>
Source§fn from(source: NewGroupError<StorageError>) -> Self
fn from(source: NewGroupError<StorageError>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<StorageError> Freeze for BranchError<StorageError>
impl<StorageError> RefUnwindSafe for BranchError<StorageError>where
NewGroupError<StorageError>: RefUnwindSafe,
CommitBuilderStageError<StorageError>: RefUnwindSafe,
impl<StorageError> Send for BranchError<StorageError>
impl<StorageError> Sync for BranchError<StorageError>
impl<StorageError> Unpin for BranchError<StorageError>
impl<StorageError> UnsafeUnpin for BranchError<StorageError>
impl<StorageError> UnwindSafe for BranchError<StorageError>
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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