#[non_exhaustive]pub enum RealtimeCompletionAttachmentError {
AlreadyAttached,
}Expand description
Failure to attach exact backend completion evidence to a branch.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AlreadyAttached
A transition represents one exact submission and already has evidence.
Trait Implementations§
Source§impl Clone for RealtimeCompletionAttachmentError
impl Clone for RealtimeCompletionAttachmentError
Source§fn clone(&self) -> RealtimeCompletionAttachmentError
fn clone(&self) -> RealtimeCompletionAttachmentError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RealtimeCompletionAttachmentError
impl Eq for RealtimeCompletionAttachmentError
Source§impl Error for RealtimeCompletionAttachmentError
impl Error for RealtimeCompletionAttachmentError
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<TransitionError, TransactionError> From<RealtimeCompletionAttachmentError> for RealtimeFrameExecutionError<TransitionError, TransactionError>
impl<TransitionError, TransactionError> From<RealtimeCompletionAttachmentError> for RealtimeFrameExecutionError<TransitionError, TransactionError>
Source§fn from(source: RealtimeCompletionAttachmentError) -> Self
fn from(source: RealtimeCompletionAttachmentError) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for RealtimeCompletionAttachmentError
Auto Trait Implementations§
impl Freeze for RealtimeCompletionAttachmentError
impl RefUnwindSafe for RealtimeCompletionAttachmentError
impl Send for RealtimeCompletionAttachmentError
impl Sync for RealtimeCompletionAttachmentError
impl Unpin for RealtimeCompletionAttachmentError
impl UnsafeUnpin for RealtimeCompletionAttachmentError
impl UnwindSafe for RealtimeCompletionAttachmentError
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