Struct aws_sdk_licensemanager::operation::extend_license_consumption::ExtendLicenseConsumptionOutput
source · #[non_exhaustive]pub struct ExtendLicenseConsumptionOutput {
pub license_consumption_token: Option<String>,
pub expiration: Option<String>,
/* 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.license_consumption_token: Option<String>License consumption token.
expiration: Option<String>Date and time at which the license consumption expires.
Implementations§
source§impl ExtendLicenseConsumptionOutput
impl ExtendLicenseConsumptionOutput
sourcepub fn license_consumption_token(&self) -> Option<&str>
pub fn license_consumption_token(&self) -> Option<&str>
License consumption token.
sourcepub fn expiration(&self) -> Option<&str>
pub fn expiration(&self) -> Option<&str>
Date and time at which the license consumption expires.
source§impl ExtendLicenseConsumptionOutput
impl ExtendLicenseConsumptionOutput
sourcepub fn builder() -> ExtendLicenseConsumptionOutputBuilder
pub fn builder() -> ExtendLicenseConsumptionOutputBuilder
Creates a new builder-style object to manufacture ExtendLicenseConsumptionOutput.
Trait Implementations§
source§impl Clone for ExtendLicenseConsumptionOutput
impl Clone for ExtendLicenseConsumptionOutput
source§fn clone(&self) -> ExtendLicenseConsumptionOutput
fn clone(&self) -> ExtendLicenseConsumptionOutput
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<ExtendLicenseConsumptionOutput> for ExtendLicenseConsumptionOutput
impl PartialEq<ExtendLicenseConsumptionOutput> for ExtendLicenseConsumptionOutput
source§fn eq(&self, other: &ExtendLicenseConsumptionOutput) -> bool
fn eq(&self, other: &ExtendLicenseConsumptionOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for ExtendLicenseConsumptionOutput
impl RequestId for ExtendLicenseConsumptionOutput
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 ExtendLicenseConsumptionOutput
Auto Trait Implementations§
impl RefUnwindSafe for ExtendLicenseConsumptionOutput
impl Send for ExtendLicenseConsumptionOutput
impl Sync for ExtendLicenseConsumptionOutput
impl Unpin for ExtendLicenseConsumptionOutput
impl UnwindSafe for ExtendLicenseConsumptionOutput
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