Struct aws_sdk_quicksight::types::builders::AxisLinearScaleBuilder
source · #[non_exhaustive]pub struct AxisLinearScaleBuilder { /* private fields */ }Expand description
A builder for AxisLinearScale.
Implementations§
source§impl AxisLinearScaleBuilder
impl AxisLinearScaleBuilder
sourcepub fn step_count(self, input: i32) -> Self
pub fn step_count(self, input: i32) -> Self
The step count setup of a linear axis.
sourcepub fn set_step_count(self, input: Option<i32>) -> Self
pub fn set_step_count(self, input: Option<i32>) -> Self
The step count setup of a linear axis.
sourcepub fn get_step_count(&self) -> &Option<i32>
pub fn get_step_count(&self) -> &Option<i32>
The step count setup of a linear axis.
sourcepub fn set_step_size(self, input: Option<f64>) -> Self
pub fn set_step_size(self, input: Option<f64>) -> Self
The step size setup of a linear axis.
sourcepub fn get_step_size(&self) -> &Option<f64>
pub fn get_step_size(&self) -> &Option<f64>
The step size setup of a linear axis.
sourcepub fn build(self) -> AxisLinearScale
pub fn build(self) -> AxisLinearScale
Consumes the builder and constructs a AxisLinearScale.
Trait Implementations§
source§impl Clone for AxisLinearScaleBuilder
impl Clone for AxisLinearScaleBuilder
source§fn clone(&self) -> AxisLinearScaleBuilder
fn clone(&self) -> AxisLinearScaleBuilder
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 AxisLinearScaleBuilder
impl Debug for AxisLinearScaleBuilder
source§impl Default for AxisLinearScaleBuilder
impl Default for AxisLinearScaleBuilder
source§fn default() -> AxisLinearScaleBuilder
fn default() -> AxisLinearScaleBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AxisLinearScaleBuilder
impl PartialEq for AxisLinearScaleBuilder
source§fn eq(&self, other: &AxisLinearScaleBuilder) -> bool
fn eq(&self, other: &AxisLinearScaleBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AxisLinearScaleBuilder
Auto Trait Implementations§
impl Freeze for AxisLinearScaleBuilder
impl RefUnwindSafe for AxisLinearScaleBuilder
impl Send for AxisLinearScaleBuilder
impl Sync for AxisLinearScaleBuilder
impl Unpin for AxisLinearScaleBuilder
impl UnwindSafe for AxisLinearScaleBuilder
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.