Struct aws_sdk_quicksight::types::builders::TopicVisualBuilder
source · #[non_exhaustive]pub struct TopicVisualBuilder { /* private fields */ }
Expand description
A builder for TopicVisual
.
Implementations§
source§impl TopicVisualBuilder
impl TopicVisualBuilder
sourcepub fn set_visual_id(self, input: Option<String>) -> Self
pub fn set_visual_id(self, input: Option<String>) -> Self
The visual ID for the TopicVisual
.
sourcepub fn get_visual_id(&self) -> &Option<String>
pub fn get_visual_id(&self) -> &Option<String>
The visual ID for the TopicVisual
.
sourcepub fn role(self, input: VisualRole) -> Self
pub fn role(self, input: VisualRole) -> Self
The role for the TopicVisual
.
sourcepub fn set_role(self, input: Option<VisualRole>) -> Self
pub fn set_role(self, input: Option<VisualRole>) -> Self
The role for the TopicVisual
.
sourcepub fn get_role(&self) -> &Option<VisualRole>
pub fn get_role(&self) -> &Option<VisualRole>
The role for the TopicVisual
.
sourcepub fn supporting_visuals(self, input: TopicVisual) -> Self
pub fn supporting_visuals(self, input: TopicVisual) -> Self
Appends an item to supporting_visuals
.
To override the contents of this collection use set_supporting_visuals
.
The supporting visuals for the TopicVisual
.
sourcepub fn set_supporting_visuals(self, input: Option<Vec<TopicVisual>>) -> Self
pub fn set_supporting_visuals(self, input: Option<Vec<TopicVisual>>) -> Self
The supporting visuals for the TopicVisual
.
sourcepub fn get_supporting_visuals(&self) -> &Option<Vec<TopicVisual>>
pub fn get_supporting_visuals(&self) -> &Option<Vec<TopicVisual>>
The supporting visuals for the TopicVisual
.
sourcepub fn build(self) -> TopicVisual
pub fn build(self) -> TopicVisual
Consumes the builder and constructs a TopicVisual
.
Trait Implementations§
source§impl Clone for TopicVisualBuilder
impl Clone for TopicVisualBuilder
source§fn clone(&self) -> TopicVisualBuilder
fn clone(&self) -> TopicVisualBuilder
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 TopicVisualBuilder
impl Debug for TopicVisualBuilder
source§impl Default for TopicVisualBuilder
impl Default for TopicVisualBuilder
source§fn default() -> TopicVisualBuilder
fn default() -> TopicVisualBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for TopicVisualBuilder
impl PartialEq for TopicVisualBuilder
impl StructuralPartialEq for TopicVisualBuilder
Auto Trait Implementations§
impl Freeze for TopicVisualBuilder
impl RefUnwindSafe for TopicVisualBuilder
impl Send for TopicVisualBuilder
impl Sync for TopicVisualBuilder
impl Unpin for TopicVisualBuilder
impl UnwindSafe for TopicVisualBuilder
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.