Struct aws_sdk_quicksight::types::Layout
source · #[non_exhaustive]pub struct Layout {
pub configuration: Option<LayoutConfiguration>,
}
Expand description
A Layout
defines the placement of elements within a sheet.
For more information, see Types of layout in the Amazon QuickSight User Guide.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
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.configuration: Option<LayoutConfiguration>
The configuration that determines what the type of layout for a sheet.
Implementations§
source§impl Layout
impl Layout
sourcepub fn configuration(&self) -> Option<&LayoutConfiguration>
pub fn configuration(&self) -> Option<&LayoutConfiguration>
The configuration that determines what the type of layout for a sheet.
Trait Implementations§
source§impl PartialEq for Layout
impl PartialEq for Layout
impl StructuralPartialEq for Layout
Auto Trait Implementations§
impl RefUnwindSafe for Layout
impl Send for Layout
impl Sync for Layout
impl Unpin for Layout
impl UnwindSafe for Layout
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> 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>
Creates a shared type from an unshared type.