Struct aws_sdk_quicksight::types::builders::TileLayoutStyleBuilder
source · #[non_exhaustive]pub struct TileLayoutStyleBuilder { /* private fields */ }Expand description
A builder for TileLayoutStyle.
Implementations§
source§impl TileLayoutStyleBuilder
impl TileLayoutStyleBuilder
sourcepub fn gutter(self, input: GutterStyle) -> Self
pub fn gutter(self, input: GutterStyle) -> Self
The gutter settings that apply between tiles.
sourcepub fn set_gutter(self, input: Option<GutterStyle>) -> Self
pub fn set_gutter(self, input: Option<GutterStyle>) -> Self
The gutter settings that apply between tiles.
sourcepub fn get_gutter(&self) -> &Option<GutterStyle>
pub fn get_gutter(&self) -> &Option<GutterStyle>
The gutter settings that apply between tiles.
sourcepub fn margin(self, input: MarginStyle) -> Self
pub fn margin(self, input: MarginStyle) -> Self
The margin settings that apply around the outside edge of sheets.
sourcepub fn set_margin(self, input: Option<MarginStyle>) -> Self
pub fn set_margin(self, input: Option<MarginStyle>) -> Self
The margin settings that apply around the outside edge of sheets.
sourcepub fn get_margin(&self) -> &Option<MarginStyle>
pub fn get_margin(&self) -> &Option<MarginStyle>
The margin settings that apply around the outside edge of sheets.
sourcepub fn build(self) -> TileLayoutStyle
pub fn build(self) -> TileLayoutStyle
Consumes the builder and constructs a TileLayoutStyle.
Trait Implementations§
source§impl Clone for TileLayoutStyleBuilder
impl Clone for TileLayoutStyleBuilder
source§fn clone(&self) -> TileLayoutStyleBuilder
fn clone(&self) -> TileLayoutStyleBuilder
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 TileLayoutStyleBuilder
impl Debug for TileLayoutStyleBuilder
source§impl Default for TileLayoutStyleBuilder
impl Default for TileLayoutStyleBuilder
source§fn default() -> TileLayoutStyleBuilder
fn default() -> TileLayoutStyleBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for TileLayoutStyleBuilder
impl PartialEq for TileLayoutStyleBuilder
source§fn eq(&self, other: &TileLayoutStyleBuilder) -> bool
fn eq(&self, other: &TileLayoutStyleBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TileLayoutStyleBuilder
Auto Trait Implementations§
impl Freeze for TileLayoutStyleBuilder
impl RefUnwindSafe for TileLayoutStyleBuilder
impl Send for TileLayoutStyleBuilder
impl Sync for TileLayoutStyleBuilder
impl Unpin for TileLayoutStyleBuilder
impl UnwindSafe for TileLayoutStyleBuilder
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.