#[non_exhaustive]pub struct CreateContentOutput {
pub content: Option<ContentData>,
/* 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.content: Option<ContentData>
The content.
Implementations§
source§impl CreateContentOutput
impl CreateContentOutput
sourcepub fn content(&self) -> Option<&ContentData>
pub fn content(&self) -> Option<&ContentData>
The content.
source§impl CreateContentOutput
impl CreateContentOutput
sourcepub fn builder() -> CreateContentOutputBuilder
pub fn builder() -> CreateContentOutputBuilder
Creates a new builder-style object to manufacture CreateContentOutput
.
Trait Implementations§
source§impl Clone for CreateContentOutput
impl Clone for CreateContentOutput
source§fn clone(&self) -> CreateContentOutput
fn clone(&self) -> CreateContentOutput
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 CreateContentOutput
impl Debug for CreateContentOutput
source§impl PartialEq<CreateContentOutput> for CreateContentOutput
impl PartialEq<CreateContentOutput> for CreateContentOutput
source§fn eq(&self, other: &CreateContentOutput) -> bool
fn eq(&self, other: &CreateContentOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateContentOutput
impl RequestId for CreateContentOutput
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 CreateContentOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateContentOutput
impl Send for CreateContentOutput
impl Sync for CreateContentOutput
impl Unpin for CreateContentOutput
impl UnwindSafe for CreateContentOutput
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