Struct aws_sdk_quicksight::types::builders::SectionStyleBuilder
source · #[non_exhaustive]pub struct SectionStyleBuilder { /* private fields */ }
Expand description
A builder for SectionStyle
.
Implementations§
source§impl SectionStyleBuilder
impl SectionStyleBuilder
sourcepub fn height(self, input: impl Into<String>) -> Self
pub fn height(self, input: impl Into<String>) -> Self
The height of a section.
Heights can only be defined for header and footer sections. The default height margin is 0.5 inches.
sourcepub fn set_height(self, input: Option<String>) -> Self
pub fn set_height(self, input: Option<String>) -> Self
The height of a section.
Heights can only be defined for header and footer sections. The default height margin is 0.5 inches.
sourcepub fn get_height(&self) -> &Option<String>
pub fn get_height(&self) -> &Option<String>
The height of a section.
Heights can only be defined for header and footer sections. The default height margin is 0.5 inches.
sourcepub fn padding(self, input: Spacing) -> Self
pub fn padding(self, input: Spacing) -> Self
The spacing between section content and its top, bottom, left, and right edges.
There is no padding by default.
sourcepub fn set_padding(self, input: Option<Spacing>) -> Self
pub fn set_padding(self, input: Option<Spacing>) -> Self
The spacing between section content and its top, bottom, left, and right edges.
There is no padding by default.
sourcepub fn get_padding(&self) -> &Option<Spacing>
pub fn get_padding(&self) -> &Option<Spacing>
The spacing between section content and its top, bottom, left, and right edges.
There is no padding by default.
sourcepub fn build(self) -> SectionStyle
pub fn build(self) -> SectionStyle
Consumes the builder and constructs a SectionStyle
.
Trait Implementations§
source§impl Clone for SectionStyleBuilder
impl Clone for SectionStyleBuilder
source§fn clone(&self) -> SectionStyleBuilder
fn clone(&self) -> SectionStyleBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SectionStyleBuilder
impl Debug for SectionStyleBuilder
source§impl Default for SectionStyleBuilder
impl Default for SectionStyleBuilder
source§fn default() -> SectionStyleBuilder
fn default() -> SectionStyleBuilder
source§impl PartialEq for SectionStyleBuilder
impl PartialEq for SectionStyleBuilder
impl StructuralPartialEq for SectionStyleBuilder
Auto Trait Implementations§
impl Freeze for SectionStyleBuilder
impl RefUnwindSafe for SectionStyleBuilder
impl Send for SectionStyleBuilder
impl Sync for SectionStyleBuilder
impl Unpin for SectionStyleBuilder
impl UnwindSafe for SectionStyleBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
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>
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>
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 more