pub enum CredentialReadiness {
Configured,
KeylessLocal,
Missing {
detail: String,
},
}Expand description
Whether a route can be called at all, decided from local configuration.
Variants§
Configured
A credential for this provider is configured on this machine.
KeylessLocal
The provider is a local, keyless endpoint. Valid, and not a downgrade.
Missing
No credential is configured. The route cannot run.
Implementations§
Trait Implementations§
Source§impl Clone for CredentialReadiness
impl Clone for CredentialReadiness
Source§fn clone(&self) -> CredentialReadiness
fn clone(&self) -> CredentialReadiness
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 CredentialReadiness
impl Debug for CredentialReadiness
Source§impl<'de> Deserialize<'de> for CredentialReadiness
impl<'de> Deserialize<'de> for CredentialReadiness
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
impl Eq for CredentialReadiness
Source§impl PartialEq for CredentialReadiness
impl PartialEq for CredentialReadiness
Source§impl Serialize for CredentialReadiness
impl Serialize for CredentialReadiness
impl StructuralPartialEq for CredentialReadiness
Auto Trait Implementations§
impl Freeze for CredentialReadiness
impl RefUnwindSafe for CredentialReadiness
impl Send for CredentialReadiness
impl Sync for CredentialReadiness
impl Unpin for CredentialReadiness
impl UnsafeUnpin for CredentialReadiness
impl UnwindSafe for CredentialReadiness
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