pub enum ConfigStatus {
DetectedAndSaved {
providers: HashMap<String, PathBuf>,
},
LoadedExisting {
config_path: PathBuf,
},
NoProvidersDetected {
available_providers: Vec<ProviderInfo>,
},
}Variants§
Trait Implementations§
Source§impl Clone for ConfigStatus
impl Clone for ConfigStatus
Source§fn clone(&self) -> ConfigStatus
fn clone(&self) -> ConfigStatus
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 moreAuto Trait Implementations§
impl Freeze for ConfigStatus
impl RefUnwindSafe for ConfigStatus
impl Send for ConfigStatus
impl Sync for ConfigStatus
impl Unpin for ConfigStatus
impl UnwindSafe for ConfigStatus
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