#[non_exhaustive]pub struct AnonymousUserSnapshotJobResult {
pub file_groups: Option<Vec<SnapshotJobResultFileGroup>>,
}Expand description
A structure that contains the file groups that are requested for the artifact generation in a StartDashboardSnapshotJob API call.
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.file_groups: Option<Vec<SnapshotJobResultFileGroup>>A list of SnapshotJobResultFileGroup objects that contain information on the files that are requested during a StartDashboardSnapshotJob API call. If the job succeeds, these objects contain the location where the snapshot artifacts are stored. If the job fails, the objects contain information about the error that caused the job to fail.
Implementations§
source§impl AnonymousUserSnapshotJobResult
impl AnonymousUserSnapshotJobResult
sourcepub fn file_groups(&self) -> &[SnapshotJobResultFileGroup]
pub fn file_groups(&self) -> &[SnapshotJobResultFileGroup]
A list of SnapshotJobResultFileGroup objects that contain information on the files that are requested during a StartDashboardSnapshotJob API call. If the job succeeds, these objects contain the location where the snapshot artifacts are stored. If the job fails, the objects contain information about the error that caused the job to fail.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .file_groups.is_none().
source§impl AnonymousUserSnapshotJobResult
impl AnonymousUserSnapshotJobResult
sourcepub fn builder() -> AnonymousUserSnapshotJobResultBuilder
pub fn builder() -> AnonymousUserSnapshotJobResultBuilder
Creates a new builder-style object to manufacture AnonymousUserSnapshotJobResult.
Trait Implementations§
source§impl Clone for AnonymousUserSnapshotJobResult
impl Clone for AnonymousUserSnapshotJobResult
source§fn clone(&self) -> AnonymousUserSnapshotJobResult
fn clone(&self) -> AnonymousUserSnapshotJobResult
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for AnonymousUserSnapshotJobResult
impl PartialEq for AnonymousUserSnapshotJobResult
source§fn eq(&self, other: &AnonymousUserSnapshotJobResult) -> bool
fn eq(&self, other: &AnonymousUserSnapshotJobResult) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AnonymousUserSnapshotJobResult
Auto Trait Implementations§
impl Freeze for AnonymousUserSnapshotJobResult
impl RefUnwindSafe for AnonymousUserSnapshotJobResult
impl Send for AnonymousUserSnapshotJobResult
impl Sync for AnonymousUserSnapshotJobResult
impl Unpin for AnonymousUserSnapshotJobResult
impl UnwindSafe for AnonymousUserSnapshotJobResult
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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