pub enum MonitoringCreateTokenError {
InsufficientPermissions,
AlreadyExists,
SystemCorrupted,
InternalError,
}Expand description
Represents the possible errors that can occur when a new MonitoringToken is created with
MonitoringBuilder::token().
Variants§
Trait Implementations§
Source§impl Clone for MonitoringCreateTokenError
impl Clone for MonitoringCreateTokenError
Source§fn clone(&self) -> MonitoringCreateTokenError
fn clone(&self) -> MonitoringCreateTokenError
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 MonitoringCreateTokenError
impl Debug for MonitoringCreateTokenError
Source§impl Display for MonitoringCreateTokenError
impl Display for MonitoringCreateTokenError
Source§impl Error for MonitoringCreateTokenError
impl Error for MonitoringCreateTokenError
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 PartialEq for MonitoringCreateTokenError
impl PartialEq for MonitoringCreateTokenError
Source§fn eq(&self, other: &MonitoringCreateTokenError) -> bool
fn eq(&self, other: &MonitoringCreateTokenError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MonitoringCreateTokenError
impl Eq for MonitoringCreateTokenError
impl StructuralPartialEq for MonitoringCreateTokenError
Auto Trait Implementations§
impl Freeze for MonitoringCreateTokenError
impl RefUnwindSafe for MonitoringCreateTokenError
impl Send for MonitoringCreateTokenError
impl Sync for MonitoringCreateTokenError
impl Unpin for MonitoringCreateTokenError
impl UnsafeUnpin for MonitoringCreateTokenError
impl UnwindSafe for MonitoringCreateTokenError
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