pub enum SecretFileResolution {
Exact(String),
Ambiguous {
candidates: Vec<String>,
},
NotFound,
}Variants§
Trait Implementations§
Source§impl Clone for SecretFileResolution
impl Clone for SecretFileResolution
Source§fn clone(&self) -> SecretFileResolution
fn clone(&self) -> SecretFileResolution
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 SecretFileResolution
impl Debug for SecretFileResolution
Source§impl PartialEq for SecretFileResolution
impl PartialEq for SecretFileResolution
Source§fn eq(&self, other: &SecretFileResolution) -> bool
fn eq(&self, other: &SecretFileResolution) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SecretFileResolution
impl StructuralPartialEq for SecretFileResolution
Auto Trait Implementations§
impl Freeze for SecretFileResolution
impl RefUnwindSafe for SecretFileResolution
impl Send for SecretFileResolution
impl Sync for SecretFileResolution
impl Unpin for SecretFileResolution
impl UnsafeUnpin for SecretFileResolution
impl UnwindSafe for SecretFileResolution
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