Struct aws_sdk_quicksight::types::EmptyVisual
source · #[non_exhaustive]pub struct EmptyVisual {
pub visual_id: String,
pub data_set_identifier: String,
pub actions: Option<Vec<VisualCustomAction>>,
}
Expand description
An empty visual.
Empty visuals are used in layouts but have not been configured to show any data. A new visual created in the Amazon QuickSight console is considered an EmptyVisual
until a visual type is selected.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.visual_id: String
The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers.
data_set_identifier: String
The data set that is used in the empty visual. Every visual requires a dataset to render.
actions: Option<Vec<VisualCustomAction>>
The list of custom actions that are configured for a visual.
Implementations§
source§impl EmptyVisual
impl EmptyVisual
sourcepub fn visual_id(&self) -> &str
pub fn visual_id(&self) -> &str
The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers.
sourcepub fn data_set_identifier(&self) -> &str
pub fn data_set_identifier(&self) -> &str
The data set that is used in the empty visual. Every visual requires a dataset to render.
sourcepub fn actions(&self) -> &[VisualCustomAction]
pub fn actions(&self) -> &[VisualCustomAction]
The list of custom actions that are configured for a visual.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .actions.is_none()
.
source§impl EmptyVisual
impl EmptyVisual
sourcepub fn builder() -> EmptyVisualBuilder
pub fn builder() -> EmptyVisualBuilder
Creates a new builder-style object to manufacture EmptyVisual
.
Trait Implementations§
source§impl Clone for EmptyVisual
impl Clone for EmptyVisual
source§fn clone(&self) -> EmptyVisual
fn clone(&self) -> EmptyVisual
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EmptyVisual
impl Debug for EmptyVisual
source§impl PartialEq for EmptyVisual
impl PartialEq for EmptyVisual
impl StructuralPartialEq for EmptyVisual
Auto Trait Implementations§
impl Freeze for EmptyVisual
impl RefUnwindSafe for EmptyVisual
impl Send for EmptyVisual
impl Sync for EmptyVisual
impl Unpin for EmptyVisual
impl UnwindSafe for EmptyVisual
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
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)
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>
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>
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 more