pub struct ConfigLocation {
pub level: ConfigLevel,
pub path: PathBuf,
pub exists: bool,
}Expand description
Represents a configuration location
Fields§
§level: ConfigLevel§path: PathBuf§exists: boolTrait Implementations§
Source§impl Clone for ConfigLocation
impl Clone for ConfigLocation
Source§fn clone(&self) -> ConfigLocation
fn clone(&self) -> ConfigLocation
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 ConfigLocation
impl RefUnwindSafe for ConfigLocation
impl Send for ConfigLocation
impl Sync for ConfigLocation
impl Unpin for ConfigLocation
impl UnwindSafe for ConfigLocation
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