pub struct GroupSetting {
pub display_name: String,
pub template_id: String,
pub values: Vec<SettingValue>,
}
Fields§
§display_name: String
§template_id: String
§values: Vec<SettingValue>
Trait Implementations§
Source§impl Clone for GroupSetting
impl Clone for GroupSetting
Source§fn clone(&self) -> GroupSetting
fn clone(&self) -> GroupSetting
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 GroupSetting
impl Debug for GroupSetting
Source§impl<'de> Deserialize<'de> for GroupSetting
impl<'de> Deserialize<'de> for GroupSetting
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 GroupSetting
impl PartialEq for GroupSetting
Source§impl Serialize for GroupSetting
impl Serialize for GroupSetting
impl Eq for GroupSetting
impl StructuralPartialEq for GroupSetting
Auto Trait Implementations§
impl Freeze for GroupSetting
impl RefUnwindSafe for GroupSetting
impl Send for GroupSetting
impl Sync for GroupSetting
impl Unpin for GroupSetting
impl UnwindSafe for GroupSetting
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