#[non_exhaustive]pub struct DeleteDatasetOutput {
pub dataset: Option<Dataset>,
/* private fields */
}Expand description
Response to a successful DeleteDataset request.
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.dataset: Option<Dataset>A collection of data for an identity pool. An identity pool can have multiple datasets. A dataset is per identity and can be general or associated with a particular entity in an application (like a saved game). Datasets are automatically created if they don’t exist. Data is synced by dataset, and a dataset can hold up to 1MB of key-value pairs.
Implementations§
source§impl DeleteDatasetOutput
impl DeleteDatasetOutput
sourcepub fn dataset(&self) -> Option<&Dataset>
pub fn dataset(&self) -> Option<&Dataset>
A collection of data for an identity pool. An identity pool can have multiple datasets. A dataset is per identity and can be general or associated with a particular entity in an application (like a saved game). Datasets are automatically created if they don’t exist. Data is synced by dataset, and a dataset can hold up to 1MB of key-value pairs.
source§impl DeleteDatasetOutput
impl DeleteDatasetOutput
sourcepub fn builder() -> DeleteDatasetOutputBuilder
pub fn builder() -> DeleteDatasetOutputBuilder
Creates a new builder-style object to manufacture DeleteDatasetOutput.
Trait Implementations§
source§impl Clone for DeleteDatasetOutput
impl Clone for DeleteDatasetOutput
source§fn clone(&self) -> DeleteDatasetOutput
fn clone(&self) -> DeleteDatasetOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteDatasetOutput
impl Debug for DeleteDatasetOutput
source§impl PartialEq for DeleteDatasetOutput
impl PartialEq for DeleteDatasetOutput
source§fn eq(&self, other: &DeleteDatasetOutput) -> bool
fn eq(&self, other: &DeleteDatasetOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for DeleteDatasetOutput
impl RequestId for DeleteDatasetOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for DeleteDatasetOutput
Auto Trait Implementations§
impl Freeze for DeleteDatasetOutput
impl RefUnwindSafe for DeleteDatasetOutput
impl Send for DeleteDatasetOutput
impl Sync for DeleteDatasetOutput
impl Unpin for DeleteDatasetOutput
impl UnwindSafe for DeleteDatasetOutput
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> 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