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