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