Struct aws_sdk_quicksight::types::Typography
source · #[non_exhaustive]pub struct Typography {
pub font_families: Option<Vec<Font>>,
}Expand description
Determines the typography options.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.font_families: Option<Vec<Font>>Determines the list of font families.
Implementations§
source§impl Typography
impl Typography
sourcepub fn font_families(&self) -> Option<&[Font]>
pub fn font_families(&self) -> Option<&[Font]>
Determines the list of font families.
source§impl Typography
impl Typography
sourcepub fn builder() -> TypographyBuilder
pub fn builder() -> TypographyBuilder
Creates a new builder-style object to manufacture Typography.
Trait Implementations§
source§impl Clone for Typography
impl Clone for Typography
source§fn clone(&self) -> Typography
fn clone(&self) -> Typography
Returns a copy 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 Typography
impl Debug for Typography
source§impl PartialEq<Typography> for Typography
impl PartialEq<Typography> for Typography
source§fn eq(&self, other: &Typography) -> bool
fn eq(&self, other: &Typography) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for Typography
Auto Trait Implementations§
impl RefUnwindSafe for Typography
impl Send for Typography
impl Sync for Typography
impl Unpin for Typography
impl UnwindSafe for Typography
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