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 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 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
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 SectionStyleBuilder
impl Debug for SectionStyleBuilder
source§impl Default for SectionStyleBuilder
impl Default for SectionStyleBuilder
source§fn default() -> SectionStyleBuilder
fn default() -> SectionStyleBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<SectionStyleBuilder> for SectionStyleBuilder
impl PartialEq<SectionStyleBuilder> for SectionStyleBuilder
source§fn eq(&self, other: &SectionStyleBuilder) -> bool
fn eq(&self, other: &SectionStyleBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SectionStyleBuilder
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more