pub enum InvalidCredentialsFileError {
FileNotFound,
ConflictingSettings((String, String), (String, String)),
SerializationError(String),
}Variants§
Trait Implementations§
Source§impl Clone for InvalidCredentialsFileError
impl Clone for InvalidCredentialsFileError
Source§fn clone(&self) -> InvalidCredentialsFileError
fn clone(&self) -> InvalidCredentialsFileError
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 InvalidCredentialsFileError
impl Debug for InvalidCredentialsFileError
Source§impl Error for InvalidCredentialsFileError
impl Error for InvalidCredentialsFileError
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<InvalidCredentialsFileError> for ParseError
impl From<InvalidCredentialsFileError> for ParseError
Source§fn from(value: InvalidCredentialsFileError) -> Self
fn from(value: InvalidCredentialsFileError) -> Self
Converts to this type from the input type.
Source§impl Ord for InvalidCredentialsFileError
impl Ord for InvalidCredentialsFileError
Source§fn cmp(&self, other: &InvalidCredentialsFileError) -> Ordering
fn cmp(&self, other: &InvalidCredentialsFileError) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for InvalidCredentialsFileError
impl PartialOrd for InvalidCredentialsFileError
impl Eq for InvalidCredentialsFileError
impl StructuralPartialEq for InvalidCredentialsFileError
Auto Trait Implementations§
impl Freeze for InvalidCredentialsFileError
impl RefUnwindSafe for InvalidCredentialsFileError
impl Send for InvalidCredentialsFileError
impl Sync for InvalidCredentialsFileError
impl Unpin for InvalidCredentialsFileError
impl UnwindSafe for InvalidCredentialsFileError
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