pub struct ConfigStore {
pub name: Option<String>,
}
Fields§
§name: Option<String>
The name of the config store.
Implementations§
Source§impl ConfigStore
impl ConfigStore
pub fn new() -> ConfigStore
Trait Implementations§
Source§impl Clone for ConfigStore
impl Clone for ConfigStore
Source§fn clone(&self) -> ConfigStore
fn clone(&self) -> ConfigStore
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 ConfigStore
impl Debug for ConfigStore
Source§impl Default for ConfigStore
impl Default for ConfigStore
Source§fn default() -> ConfigStore
fn default() -> ConfigStore
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConfigStore
impl<'de> Deserialize<'de> for ConfigStore
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ConfigStore
impl PartialEq for ConfigStore
Source§impl Serialize for ConfigStore
impl Serialize for ConfigStore
impl StructuralPartialEq for ConfigStore
Auto Trait Implementations§
impl Freeze for ConfigStore
impl RefUnwindSafe for ConfigStore
impl Send for ConfigStore
impl Sync for ConfigStore
impl Unpin for ConfigStore
impl UnwindSafe for ConfigStore
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