pub struct ThemeSection {
pub name: String,
pub skin: String,
pub allow_switch: bool,
pub github_url: String,
}Fields§
§name: String§skin: String§allow_switch: bool§github_url: StringTrait Implementations§
Source§impl Clone for ThemeSection
impl Clone for ThemeSection
Source§fn clone(&self) -> ThemeSection
fn clone(&self) -> ThemeSection
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 moreSource§impl Debug for ThemeSection
impl Debug for ThemeSection
Source§impl Default for ThemeSection
impl Default for ThemeSection
Source§impl<'de> Deserialize<'de> for ThemeSectionwhere
ThemeSection: Default,
impl<'de> Deserialize<'de> for ThemeSectionwhere
ThemeSection: Default,
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
Auto Trait Implementations§
impl Freeze for ThemeSection
impl RefUnwindSafe for ThemeSection
impl Send for ThemeSection
impl Sync for ThemeSection
impl Unpin for ThemeSection
impl UnsafeUnpin for ThemeSection
impl UnwindSafe for ThemeSection
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