pub struct ConfigCommandOptions {
pub city: Option<String>,
pub country: Option<String>,
pub latitude: Option<String>,
pub longitude: Option<String>,
pub method: Option<String>,
pub school: Option<String>,
pub timezone: Option<String>,
pub show: bool,
pub clear: bool,
}Fields§
§city: Option<String>§country: Option<String>§latitude: Option<String>§longitude: Option<String>§method: Option<String>§school: Option<String>§timezone: Option<String>§show: bool§clear: boolTrait Implementations§
Source§impl Clone for ConfigCommandOptions
impl Clone for ConfigCommandOptions
Source§fn clone(&self) -> ConfigCommandOptions
fn clone(&self) -> ConfigCommandOptions
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 ConfigCommandOptions
impl Debug for ConfigCommandOptions
Source§impl Default for ConfigCommandOptions
impl Default for ConfigCommandOptions
Source§fn default() -> ConfigCommandOptions
fn default() -> ConfigCommandOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ConfigCommandOptions
impl RefUnwindSafe for ConfigCommandOptions
impl Send for ConfigCommandOptions
impl Sync for ConfigCommandOptions
impl Unpin for ConfigCommandOptions
impl UnsafeUnpin for ConfigCommandOptions
impl UnwindSafe for ConfigCommandOptions
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