#[non_exhaustive]pub struct CreateDatasetContentOutput {
    pub version_id: Option<String>,
    /* private fields */
}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_id: Option<String>The version ID of the dataset contents that are being created.
Implementations§
source§impl CreateDatasetContentOutput
 
impl CreateDatasetContentOutput
sourcepub fn version_id(&self) -> Option<&str>
 
pub fn version_id(&self) -> Option<&str>
The version ID of the dataset contents that are being created.
source§impl CreateDatasetContentOutput
 
impl CreateDatasetContentOutput
sourcepub fn builder() -> CreateDatasetContentOutputBuilder
 
pub fn builder() -> CreateDatasetContentOutputBuilder
Creates a new builder-style object to manufacture CreateDatasetContentOutput.
Trait Implementations§
source§impl Clone for CreateDatasetContentOutput
 
impl Clone for CreateDatasetContentOutput
source§fn clone(&self) -> CreateDatasetContentOutput
 
fn clone(&self) -> CreateDatasetContentOutput
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 CreateDatasetContentOutput
 
impl Debug for CreateDatasetContentOutput
source§impl PartialEq for CreateDatasetContentOutput
 
impl PartialEq for CreateDatasetContentOutput
source§fn eq(&self, other: &CreateDatasetContentOutput) -> bool
 
fn eq(&self, other: &CreateDatasetContentOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for CreateDatasetContentOutput
 
impl RequestId for CreateDatasetContentOutput
source§fn request_id(&self) -> Option<&str>
 
fn request_id(&self) -> Option<&str>
Returns the request ID, or 
None if the service could not be reached.impl StructuralPartialEq for CreateDatasetContentOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateDatasetContentOutput
impl Send for CreateDatasetContentOutput
impl Sync for CreateDatasetContentOutput
impl Unpin for CreateDatasetContentOutput
impl UnwindSafe for CreateDatasetContentOutput
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>
Creates a shared type from an unshared type.