Struct aws_sdk_quicksight::types::EmptyVisual
source · #[non_exhaustive]pub struct EmptyVisual { /* private fields */ }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.
Implementations§
source§impl EmptyVisual
impl EmptyVisual
sourcepub fn visual_id(&self) -> Option<&str>
pub fn visual_id(&self) -> Option<&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) -> Option<&str>
pub fn data_set_identifier(&self) -> Option<&str>
The data set that is used in the empty visual. Every visual requires a dataset to render.
sourcepub fn actions(&self) -> Option<&[VisualCustomAction]>
pub fn actions(&self) -> Option<&[VisualCustomAction]>
The list of custom actions that are configured for a visual.
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
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 EmptyVisual
impl Debug for EmptyVisual
source§impl PartialEq<EmptyVisual> for EmptyVisual
impl PartialEq<EmptyVisual> for EmptyVisual
source§fn eq(&self, other: &EmptyVisual) -> bool
fn eq(&self, other: &EmptyVisual) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for EmptyVisual
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more