pub struct MissingCredential {
pub source: String,
pub keys: Vec<String>,
pub env_vars: Vec<String>,
pub remedy: String,
}Expand description
A credential that was not found, with instructions on how to set it.
Fields§
§source: String§keys: Vec<String>§env_vars: Vec<String>§remedy: StringTrait Implementations§
Source§impl Debug for MissingCredential
impl Debug for MissingCredential
Auto Trait Implementations§
impl Freeze for MissingCredential
impl RefUnwindSafe for MissingCredential
impl Send for MissingCredential
impl Sync for MissingCredential
impl Unpin for MissingCredential
impl UnsafeUnpin for MissingCredential
impl UnwindSafe for MissingCredential
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