Struct aws_sdk_quicksight::types::builders::TooltipItemBuilder
source · #[non_exhaustive]pub struct TooltipItemBuilder { /* private fields */ }Expand description
A builder for TooltipItem.
Implementations§
source§impl TooltipItemBuilder
impl TooltipItemBuilder
sourcepub fn field_tooltip_item(self, input: FieldTooltipItem) -> Self
pub fn field_tooltip_item(self, input: FieldTooltipItem) -> Self
The tooltip item for the fields.
sourcepub fn set_field_tooltip_item(self, input: Option<FieldTooltipItem>) -> Self
pub fn set_field_tooltip_item(self, input: Option<FieldTooltipItem>) -> Self
The tooltip item for the fields.
sourcepub fn get_field_tooltip_item(&self) -> &Option<FieldTooltipItem>
pub fn get_field_tooltip_item(&self) -> &Option<FieldTooltipItem>
The tooltip item for the fields.
sourcepub fn column_tooltip_item(self, input: ColumnTooltipItem) -> Self
pub fn column_tooltip_item(self, input: ColumnTooltipItem) -> Self
The tooltip item for the columns that are not part of a field well.
sourcepub fn set_column_tooltip_item(self, input: Option<ColumnTooltipItem>) -> Self
pub fn set_column_tooltip_item(self, input: Option<ColumnTooltipItem>) -> Self
The tooltip item for the columns that are not part of a field well.
sourcepub fn get_column_tooltip_item(&self) -> &Option<ColumnTooltipItem>
pub fn get_column_tooltip_item(&self) -> &Option<ColumnTooltipItem>
The tooltip item for the columns that are not part of a field well.
sourcepub fn build(self) -> TooltipItem
pub fn build(self) -> TooltipItem
Consumes the builder and constructs a TooltipItem.
Trait Implementations§
source§impl Clone for TooltipItemBuilder
impl Clone for TooltipItemBuilder
source§fn clone(&self) -> TooltipItemBuilder
fn clone(&self) -> TooltipItemBuilder
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 TooltipItemBuilder
impl Debug for TooltipItemBuilder
source§impl Default for TooltipItemBuilder
impl Default for TooltipItemBuilder
source§fn default() -> TooltipItemBuilder
fn default() -> TooltipItemBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for TooltipItemBuilder
impl PartialEq for TooltipItemBuilder
source§fn eq(&self, other: &TooltipItemBuilder) -> bool
fn eq(&self, other: &TooltipItemBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TooltipItemBuilder
Auto Trait Implementations§
impl Freeze for TooltipItemBuilder
impl RefUnwindSafe for TooltipItemBuilder
impl Send for TooltipItemBuilder
impl Sync for TooltipItemBuilder
impl Unpin for TooltipItemBuilder
impl UnwindSafe for TooltipItemBuilder
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.