Struct aws_sdk_quicksight::types::AxisLinearScale
source · #[non_exhaustive]pub struct AxisLinearScale {
pub step_count: Option<i32>,
pub step_size: Option<f64>,
}Expand description
The liner axis scale setup.
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.step_count: Option<i32>The step count setup of a linear axis.
step_size: Option<f64>The step size setup of a linear axis.
Implementations§
source§impl AxisLinearScale
impl AxisLinearScale
sourcepub fn builder() -> AxisLinearScaleBuilder
pub fn builder() -> AxisLinearScaleBuilder
Creates a new builder-style object to manufacture AxisLinearScale.
Trait Implementations§
source§impl Clone for AxisLinearScale
impl Clone for AxisLinearScale
source§fn clone(&self) -> AxisLinearScale
fn clone(&self) -> AxisLinearScale
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 AxisLinearScale
impl Debug for AxisLinearScale
source§impl PartialEq for AxisLinearScale
impl PartialEq for AxisLinearScale
source§fn eq(&self, other: &AxisLinearScale) -> bool
fn eq(&self, other: &AxisLinearScale) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AxisLinearScale
Auto Trait Implementations§
impl Freeze for AxisLinearScale
impl RefUnwindSafe for AxisLinearScale
impl Send for AxisLinearScale
impl Sync for AxisLinearScale
impl Unpin for AxisLinearScale
impl UnwindSafe for AxisLinearScale
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.