#[non_exhaustive]pub enum ProviderErrorCode {
Maintenance,
}
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.
Maintenance
Trait Implementations§
Source§impl Clone for ProviderErrorCode
impl Clone for ProviderErrorCode
Source§fn clone(&self) -> ProviderErrorCode
fn clone(&self) -> ProviderErrorCode
Returns a duplicate 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 Debug for ProviderErrorCode
impl Debug for ProviderErrorCode
Source§impl<'de> Deserialize<'de> for ProviderErrorCode
impl<'de> Deserialize<'de> for ProviderErrorCode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProviderErrorCode
impl PartialEq for ProviderErrorCode
Source§impl Serialize for ProviderErrorCode
impl Serialize for ProviderErrorCode
impl Copy for ProviderErrorCode
impl Eq for ProviderErrorCode
impl StructuralPartialEq for ProviderErrorCode
Auto Trait Implementations§
impl Freeze for ProviderErrorCode
impl RefUnwindSafe for ProviderErrorCode
impl Send for ProviderErrorCode
impl Sync for ProviderErrorCode
impl Unpin for ProviderErrorCode
impl UnwindSafe for ProviderErrorCode
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