pub enum AetherSettingsSource {
File(SettingsFileSource),
OptionalFile(SettingsFileSource),
Json(String),
Value(AetherSettings),
}Variants§
Trait Implementations§
Source§impl Clone for AetherSettingsSource
impl Clone for AetherSettingsSource
Source§fn clone(&self) -> AetherSettingsSource
fn clone(&self) -> AetherSettingsSource
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 moreAuto Trait Implementations§
impl Freeze for AetherSettingsSource
impl RefUnwindSafe for AetherSettingsSource
impl Send for AetherSettingsSource
impl Sync for AetherSettingsSource
impl Unpin for AetherSettingsSource
impl UnsafeUnpin for AetherSettingsSource
impl UnwindSafe for AetherSettingsSource
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