pub enum SecretTextError {
Empty,
}Expand description
Error returned when secret text metadata is invalid.
Variants§
Empty
Trait Implementations§
Source§impl Clone for SecretTextError
impl Clone for SecretTextError
Source§fn clone(&self) -> SecretTextError
fn clone(&self) -> SecretTextError
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 SecretTextError
impl Debug for SecretTextError
Source§impl Display for SecretTextError
impl Display for SecretTextError
Source§impl Error for SecretTextError
impl Error for SecretTextError
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 SecretTextError
impl PartialEq for SecretTextError
Source§fn eq(&self, other: &SecretTextError) -> bool
fn eq(&self, other: &SecretTextError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SecretTextError
impl Eq for SecretTextError
impl StructuralPartialEq for SecretTextError
Auto Trait Implementations§
impl Freeze for SecretTextError
impl RefUnwindSafe for SecretTextError
impl Send for SecretTextError
impl Sync for SecretTextError
impl Unpin for SecretTextError
impl UnsafeUnpin for SecretTextError
impl UnwindSafe for SecretTextError
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