Struct aws_sdk_quicksight::types::BoxPlotFieldWells
source · #[non_exhaustive]pub struct BoxPlotFieldWells {
pub box_plot_aggregated_field_wells: Option<BoxPlotAggregatedFieldWells>,
}
Expand description
The field wells of a BoxPlotVisual
.
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.box_plot_aggregated_field_wells: Option<BoxPlotAggregatedFieldWells>
The aggregated field wells of a box plot.
Implementations§
source§impl BoxPlotFieldWells
impl BoxPlotFieldWells
sourcepub fn box_plot_aggregated_field_wells(
&self
) -> Option<&BoxPlotAggregatedFieldWells>
pub fn box_plot_aggregated_field_wells( &self ) -> Option<&BoxPlotAggregatedFieldWells>
The aggregated field wells of a box plot.
source§impl BoxPlotFieldWells
impl BoxPlotFieldWells
sourcepub fn builder() -> BoxPlotFieldWellsBuilder
pub fn builder() -> BoxPlotFieldWellsBuilder
Creates a new builder-style object to manufacture BoxPlotFieldWells
.
Trait Implementations§
source§impl Clone for BoxPlotFieldWells
impl Clone for BoxPlotFieldWells
source§fn clone(&self) -> BoxPlotFieldWells
fn clone(&self) -> BoxPlotFieldWells
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 BoxPlotFieldWells
impl Debug for BoxPlotFieldWells
source§impl PartialEq for BoxPlotFieldWells
impl PartialEq for BoxPlotFieldWells
source§fn eq(&self, other: &BoxPlotFieldWells) -> bool
fn eq(&self, other: &BoxPlotFieldWells) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BoxPlotFieldWells
Auto Trait Implementations§
impl RefUnwindSafe for BoxPlotFieldWells
impl Send for BoxPlotFieldWells
impl Sync for BoxPlotFieldWells
impl Unpin for BoxPlotFieldWells
impl UnwindSafe for BoxPlotFieldWells
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.