Struct aws_sdk_quicksight::types::AxisDisplayOptions
source · #[non_exhaustive]pub struct AxisDisplayOptions {
pub tick_label_options: Option<AxisTickLabelOptions>,
pub axis_line_visibility: Option<Visibility>,
pub grid_line_visibility: Option<Visibility>,
pub data_options: Option<AxisDataOptions>,
pub scrollbar_options: Option<ScrollBarOptions>,
pub axis_offset: Option<String>,
}
Expand description
The display options for the axis label.
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.tick_label_options: Option<AxisTickLabelOptions>
The tick label options of an axis.
axis_line_visibility: Option<Visibility>
Determines whether or not the axis line is visible.
grid_line_visibility: Option<Visibility>
Determines whether or not the grid line is visible.
data_options: Option<AxisDataOptions>
The data options for an axis.
scrollbar_options: Option<ScrollBarOptions>
The scroll bar options for an axis.
axis_offset: Option<String>
The offset value that determines the starting placement of the axis within a visual's bounds.
Implementations§
source§impl AxisDisplayOptions
impl AxisDisplayOptions
sourcepub fn tick_label_options(&self) -> Option<&AxisTickLabelOptions>
pub fn tick_label_options(&self) -> Option<&AxisTickLabelOptions>
The tick label options of an axis.
sourcepub fn axis_line_visibility(&self) -> Option<&Visibility>
pub fn axis_line_visibility(&self) -> Option<&Visibility>
Determines whether or not the axis line is visible.
sourcepub fn grid_line_visibility(&self) -> Option<&Visibility>
pub fn grid_line_visibility(&self) -> Option<&Visibility>
Determines whether or not the grid line is visible.
sourcepub fn data_options(&self) -> Option<&AxisDataOptions>
pub fn data_options(&self) -> Option<&AxisDataOptions>
The data options for an axis.
sourcepub fn scrollbar_options(&self) -> Option<&ScrollBarOptions>
pub fn scrollbar_options(&self) -> Option<&ScrollBarOptions>
The scroll bar options for an axis.
sourcepub fn axis_offset(&self) -> Option<&str>
pub fn axis_offset(&self) -> Option<&str>
The offset value that determines the starting placement of the axis within a visual's bounds.
source§impl AxisDisplayOptions
impl AxisDisplayOptions
sourcepub fn builder() -> AxisDisplayOptionsBuilder
pub fn builder() -> AxisDisplayOptionsBuilder
Creates a new builder-style object to manufacture AxisDisplayOptions
.
Trait Implementations§
source§impl Clone for AxisDisplayOptions
impl Clone for AxisDisplayOptions
source§fn clone(&self) -> AxisDisplayOptions
fn clone(&self) -> AxisDisplayOptions
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 AxisDisplayOptions
impl Debug for AxisDisplayOptions
source§impl PartialEq for AxisDisplayOptions
impl PartialEq for AxisDisplayOptions
impl StructuralPartialEq for AxisDisplayOptions
Auto Trait Implementations§
impl Freeze for AxisDisplayOptions
impl RefUnwindSafe for AxisDisplayOptions
impl Send for AxisDisplayOptions
impl Sync for AxisDisplayOptions
impl Unpin for AxisDisplayOptions
impl UnwindSafe for AxisDisplayOptions
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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.