Struct aws_sdk_quicksight::types::ThemeVersionSummary
source · #[non_exhaustive]pub struct ThemeVersionSummary {
pub version_number: Option<i64>,
pub arn: Option<String>,
pub description: Option<String>,
pub created_time: Option<DateTime>,
pub status: Option<ResourceStatus>,
}Expand description
The theme version.
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.version_number: Option<i64>The version number of the theme version.
arn: Option<String>The Amazon Resource Name (ARN) of the theme version.
description: Option<String>The description of the theme version.
created_time: Option<DateTime>The date and time that this theme version was created.
status: Option<ResourceStatus>The status of the theme version.
Implementations§
source§impl ThemeVersionSummary
impl ThemeVersionSummary
sourcepub fn version_number(&self) -> Option<i64>
pub fn version_number(&self) -> Option<i64>
The version number of the theme version.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the theme version.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
The date and time that this theme version was created.
sourcepub fn status(&self) -> Option<&ResourceStatus>
pub fn status(&self) -> Option<&ResourceStatus>
The status of the theme version.
source§impl ThemeVersionSummary
impl ThemeVersionSummary
sourcepub fn builder() -> ThemeVersionSummaryBuilder
pub fn builder() -> ThemeVersionSummaryBuilder
Creates a new builder-style object to manufacture ThemeVersionSummary.
Trait Implementations§
source§impl Clone for ThemeVersionSummary
impl Clone for ThemeVersionSummary
source§fn clone(&self) -> ThemeVersionSummary
fn clone(&self) -> ThemeVersionSummary
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 ThemeVersionSummary
impl Debug for ThemeVersionSummary
source§impl PartialEq for ThemeVersionSummary
impl PartialEq for ThemeVersionSummary
source§fn eq(&self, other: &ThemeVersionSummary) -> bool
fn eq(&self, other: &ThemeVersionSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ThemeVersionSummary
Auto Trait Implementations§
impl Freeze for ThemeVersionSummary
impl RefUnwindSafe for ThemeVersionSummary
impl Send for ThemeVersionSummary
impl Sync for ThemeVersionSummary
impl Unpin for ThemeVersionSummary
impl UnwindSafe for ThemeVersionSummary
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> 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.