#[non_exhaustive]pub enum RegisterError {
IdentityAlreadyRegistered(TimerIdentity),
CapacityExceeded {
max: usize,
},
ClaimGenerationExhausted,
}Expand description
Failure to claim one canonical timer identity.
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.
IdentityAlreadyRegistered(TimerIdentity)
The identity already has one canonical claimant.
CapacityExceeded
The fixed registry capacity has been reached.
ClaimGenerationExhausted
Logical registration claim generations are exhausted.
Trait Implementations§
Source§impl Clone for RegisterError
impl Clone for RegisterError
Source§fn clone(&self) -> RegisterError
fn clone(&self) -> RegisterError
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 moreSource§impl Debug for RegisterError
impl Debug for RegisterError
Source§impl Display for RegisterError
impl Display for RegisterError
impl Eq for RegisterError
Source§impl Error for RegisterError
impl Error for RegisterError
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<RegisterError> for TimerError
impl From<RegisterError> for TimerError
Source§fn from(source: RegisterError) -> Self
fn from(source: RegisterError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RegisterError
impl PartialEq for RegisterError
impl StructuralPartialEq for RegisterError
Auto Trait Implementations§
impl Freeze for RegisterError
impl RefUnwindSafe for RegisterError
impl Send for RegisterError
impl Sync for RegisterError
impl Unpin for RegisterError
impl UnsafeUnpin for RegisterError
impl UnwindSafe for RegisterError
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