pub struct AdStyleFont {
pub family: Option<String>,
pub size: Option<String>,
}Expand description
The font which is included in the style.
This type is not used in any activity, and only used as part of another schema.
Fields§
§family: Option<String>The family of the font.
size: Option<String>The size of the font.
Trait Implementations§
Source§impl Clone for AdStyleFont
impl Clone for AdStyleFont
Source§fn clone(&self) -> AdStyleFont
fn clone(&self) -> AdStyleFont
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 AdStyleFont
impl Debug for AdStyleFont
Source§impl Default for AdStyleFont
impl Default for AdStyleFont
Source§fn default() -> AdStyleFont
fn default() -> AdStyleFont
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdStyleFont
impl<'de> Deserialize<'de> for AdStyleFont
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
impl NestedType for AdStyleFont
impl Part for AdStyleFont
Auto Trait Implementations§
impl Freeze for AdStyleFont
impl RefUnwindSafe for AdStyleFont
impl Send for AdStyleFont
impl Sync for AdStyleFont
impl Unpin for AdStyleFont
impl UnsafeUnpin for AdStyleFont
impl UnwindSafe for AdStyleFont
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