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