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