Struct aws_sdk_quicksight::types::AxisScale
source · #[non_exhaustive]pub struct AxisScale { /* private fields */ }Expand description
The scale setup options for a numeric axis display.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
Implementations§
source§impl AxisScale
impl AxisScale
sourcepub fn linear(&self) -> Option<&AxisLinearScale>
pub fn linear(&self) -> Option<&AxisLinearScale>
The linear axis scale setup.
sourcepub fn logarithmic(&self) -> Option<&AxisLogarithmicScale>
pub fn logarithmic(&self) -> Option<&AxisLogarithmicScale>
The logarithmic axis scale setup.
Trait Implementations§
source§impl PartialEq<AxisScale> for AxisScale
impl PartialEq<AxisScale> for AxisScale
impl StructuralPartialEq for AxisScale
Auto Trait Implementations§
impl RefUnwindSafe for AxisScale
impl Send for AxisScale
impl Sync for AxisScale
impl Unpin for AxisScale
impl UnwindSafe for AxisScale
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