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