pub struct ThemeFontSchemeSummary {
pub major_latin: Option<String>,
pub major_east_asian: Option<String>,
pub major_complex_script: Option<String>,
pub minor_latin: Option<String>,
pub minor_east_asian: Option<String>,
pub minor_complex_script: Option<String>,
}Fields§
§major_latin: Option<String>§major_east_asian: Option<String>§major_complex_script: Option<String>§minor_latin: Option<String>§minor_east_asian: Option<String>§minor_complex_script: Option<String>Trait Implementations§
Source§impl Clone for ThemeFontSchemeSummary
impl Clone for ThemeFontSchemeSummary
Source§fn clone(&self) -> ThemeFontSchemeSummary
fn clone(&self) -> ThemeFontSchemeSummary
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 ThemeFontSchemeSummary
impl Debug for ThemeFontSchemeSummary
Source§impl Default for ThemeFontSchemeSummary
impl Default for ThemeFontSchemeSummary
Source§fn default() -> ThemeFontSchemeSummary
fn default() -> ThemeFontSchemeSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ThemeFontSchemeSummary
impl<'de> Deserialize<'de> for ThemeFontSchemeSummary
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 JsonSchema for ThemeFontSchemeSummary
impl JsonSchema for ThemeFontSchemeSummary
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for ThemeFontSchemeSummary
impl RefUnwindSafe for ThemeFontSchemeSummary
impl Send for ThemeFontSchemeSummary
impl Sync for ThemeFontSchemeSummary
impl Unpin for ThemeFontSchemeSummary
impl UnwindSafe for ThemeFontSchemeSummary
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