pub enum SecretRefError {
OrgMismatch,
WorkspaceMismatch,
NotFound,
}Variants§
Trait Implementations§
Source§impl Clone for SecretRefError
impl Clone for SecretRefError
Source§fn clone(&self) -> SecretRefError
fn clone(&self) -> SecretRefError
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 SecretRefError
impl Debug for SecretRefError
Source§impl Display for SecretRefError
impl Display for SecretRefError
Source§impl Error for SecretRefError
impl Error for SecretRefError
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 SecretRefError
impl PartialEq for SecretRefError
impl Eq for SecretRefError
impl StructuralPartialEq for SecretRefError
Auto Trait Implementations§
impl Freeze for SecretRefError
impl RefUnwindSafe for SecretRefError
impl Send for SecretRefError
impl Sync for SecretRefError
impl Unpin for SecretRefError
impl UnsafeUnpin for SecretRefError
impl UnwindSafe for SecretRefError
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