pub enum GroupContextExtensionsProposalValidationError {
TooManyGCEProposals,
LibraryError(LibraryError),
ExtensionNotSupportedByAllMembers,
ChangedImmutableMetadata,
RequiredExtensionNotSupportedByAllMembers,
ExtensionNotInRequiredCapabilities,
}
Expand description
Error validation a GroupContextExtensions proposal.
Variants§
TooManyGCEProposals
Commit has more than one GroupContextExtensions proposal.
LibraryError(LibraryError)
See LibraryError
for more details.
ExtensionNotSupportedByAllMembers
The new extension types in required capabilties contails extensions that are not supported by all group members.
ChangedImmutableMetadata
Proposal changes the immutable metadata extension, which is not allowed.
RequiredExtensionNotSupportedByAllMembers
The new extension types in required capabilties contails extensions that are not supported by all group members.
ExtensionNotInRequiredCapabilities
An extension in the group context extensions is not listed in the required capabilties’ extension types.
Trait Implementations§
Source§impl Clone for GroupContextExtensionsProposalValidationError
impl Clone for GroupContextExtensionsProposalValidationError
Source§fn clone(&self) -> GroupContextExtensionsProposalValidationError
fn clone(&self) -> GroupContextExtensionsProposalValidationError
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 Error for GroupContextExtensionsProposalValidationError
impl Error for GroupContextExtensionsProposalValidationError
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<GroupContextExtensionsProposalValidationError> for CreateCommitError
impl From<GroupContextExtensionsProposalValidationError> for CreateCommitError
Source§fn from(source: GroupContextExtensionsProposalValidationError) -> Self
fn from(source: GroupContextExtensionsProposalValidationError) -> Self
Converts to this type from the input type.
Source§impl From<GroupContextExtensionsProposalValidationError> for StageCommitError
impl From<GroupContextExtensionsProposalValidationError> for StageCommitError
Source§fn from(source: GroupContextExtensionsProposalValidationError) -> Self
fn from(source: GroupContextExtensionsProposalValidationError) -> Self
Converts to this type from the input type.
Source§impl From<LibraryError> for GroupContextExtensionsProposalValidationError
impl From<LibraryError> for GroupContextExtensionsProposalValidationError
Source§fn from(source: LibraryError) -> Self
fn from(source: LibraryError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GroupContextExtensionsProposalValidationError
impl PartialEq for GroupContextExtensionsProposalValidationError
Source§fn eq(&self, other: &GroupContextExtensionsProposalValidationError) -> bool
fn eq(&self, other: &GroupContextExtensionsProposalValidationError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GroupContextExtensionsProposalValidationError
Auto Trait Implementations§
impl Freeze for GroupContextExtensionsProposalValidationError
impl RefUnwindSafe for GroupContextExtensionsProposalValidationError
impl Send for GroupContextExtensionsProposalValidationError
impl Sync for GroupContextExtensionsProposalValidationError
impl Unpin for GroupContextExtensionsProposalValidationError
impl UnwindSafe for GroupContextExtensionsProposalValidationError
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,
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