Struct aws_sdk_docdb::operation::describe_engine_default_cluster_parameters::DescribeEngineDefaultClusterParametersOutput
source · #[non_exhaustive]pub struct DescribeEngineDefaultClusterParametersOutput {
pub engine_defaults: Option<EngineDefaults>,
/* 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.engine_defaults: Option<EngineDefaults>
Contains the result of a successful invocation of the DescribeEngineDefaultClusterParameters
operation.
Implementations§
source§impl DescribeEngineDefaultClusterParametersOutput
impl DescribeEngineDefaultClusterParametersOutput
sourcepub fn engine_defaults(&self) -> Option<&EngineDefaults>
pub fn engine_defaults(&self) -> Option<&EngineDefaults>
Contains the result of a successful invocation of the DescribeEngineDefaultClusterParameters
operation.
source§impl DescribeEngineDefaultClusterParametersOutput
impl DescribeEngineDefaultClusterParametersOutput
sourcepub fn builder() -> DescribeEngineDefaultClusterParametersOutputBuilder
pub fn builder() -> DescribeEngineDefaultClusterParametersOutputBuilder
Creates a new builder-style object to manufacture DescribeEngineDefaultClusterParametersOutput
.
Trait Implementations§
source§impl Clone for DescribeEngineDefaultClusterParametersOutput
impl Clone for DescribeEngineDefaultClusterParametersOutput
source§fn clone(&self) -> DescribeEngineDefaultClusterParametersOutput
fn clone(&self) -> DescribeEngineDefaultClusterParametersOutput
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 PartialEq for DescribeEngineDefaultClusterParametersOutput
impl PartialEq for DescribeEngineDefaultClusterParametersOutput
source§fn eq(&self, other: &DescribeEngineDefaultClusterParametersOutput) -> bool
fn eq(&self, other: &DescribeEngineDefaultClusterParametersOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeEngineDefaultClusterParametersOutput
impl RequestId for DescribeEngineDefaultClusterParametersOutput
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 DescribeEngineDefaultClusterParametersOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeEngineDefaultClusterParametersOutput
impl Send for DescribeEngineDefaultClusterParametersOutput
impl Sync for DescribeEngineDefaultClusterParametersOutput
impl Unpin for DescribeEngineDefaultClusterParametersOutput
impl UnwindSafe for DescribeEngineDefaultClusterParametersOutput
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