Struct aws_sdk_quicksight::types::DataSetReference
source · #[non_exhaustive]pub struct DataSetReference {
pub data_set_placeholder: Option<String>,
pub data_set_arn: Option<String>,
}Expand description
Dataset reference.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.data_set_placeholder: Option<String>Dataset placeholder.
data_set_arn: Option<String>Dataset Amazon Resource Name (ARN).
Implementations§
source§impl DataSetReference
impl DataSetReference
sourcepub fn data_set_placeholder(&self) -> Option<&str>
pub fn data_set_placeholder(&self) -> Option<&str>
Dataset placeholder.
sourcepub fn data_set_arn(&self) -> Option<&str>
pub fn data_set_arn(&self) -> Option<&str>
Dataset Amazon Resource Name (ARN).
source§impl DataSetReference
impl DataSetReference
sourcepub fn builder() -> DataSetReferenceBuilder
pub fn builder() -> DataSetReferenceBuilder
Creates a new builder-style object to manufacture DataSetReference.
Trait Implementations§
source§impl Clone for DataSetReference
impl Clone for DataSetReference
source§fn clone(&self) -> DataSetReference
fn clone(&self) -> DataSetReference
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 DataSetReference
impl Debug for DataSetReference
source§impl PartialEq<DataSetReference> for DataSetReference
impl PartialEq<DataSetReference> for DataSetReference
source§fn eq(&self, other: &DataSetReference) -> bool
fn eq(&self, other: &DataSetReference) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DataSetReference
Auto Trait Implementations§
impl RefUnwindSafe for DataSetReference
impl Send for DataSetReference
impl Sync for DataSetReference
impl Unpin for DataSetReference
impl UnwindSafe for DataSetReference
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