Struct aws_sdk_quicksight::types::builders::TypographyBuilder
source · #[non_exhaustive]pub struct TypographyBuilder { /* private fields */ }Expand description
A builder for Typography.
Implementations§
source§impl TypographyBuilder
impl TypographyBuilder
sourcepub fn font_families(self, input: Font) -> Self
pub fn font_families(self, input: Font) -> Self
Appends an item to font_families.
To override the contents of this collection use set_font_families.
Determines the list of font families.
sourcepub fn set_font_families(self, input: Option<Vec<Font>>) -> Self
pub fn set_font_families(self, input: Option<Vec<Font>>) -> Self
Determines the list of font families.
sourcepub fn get_font_families(&self) -> &Option<Vec<Font>>
pub fn get_font_families(&self) -> &Option<Vec<Font>>
Determines the list of font families.
sourcepub fn build(self) -> Typography
pub fn build(self) -> Typography
Consumes the builder and constructs a Typography.
Trait Implementations§
source§impl Clone for TypographyBuilder
impl Clone for TypographyBuilder
source§fn clone(&self) -> TypographyBuilder
fn clone(&self) -> TypographyBuilder
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 TypographyBuilder
impl Debug for TypographyBuilder
source§impl Default for TypographyBuilder
impl Default for TypographyBuilder
source§fn default() -> TypographyBuilder
fn default() -> TypographyBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for TypographyBuilder
impl PartialEq for TypographyBuilder
source§fn eq(&self, other: &TypographyBuilder) -> bool
fn eq(&self, other: &TypographyBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TypographyBuilder
Auto Trait Implementations§
impl Freeze for TypographyBuilder
impl RefUnwindSafe for TypographyBuilder
impl Send for TypographyBuilder
impl Sync for TypographyBuilder
impl Unpin for TypographyBuilder
impl UnwindSafe for TypographyBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.