#[non_exhaustive]pub struct GetUsagePlanKeysOutput {
pub items: Option<Vec<UsagePlanKey>>,
pub position: Option<String>,
/* private fields */
}
Expand description
Represents the collection of usage plan keys added to usage plans for the associated API keys and, possibly, other types of keys.
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.items: Option<Vec<UsagePlanKey>>
The current page of elements from this collection.
position: Option<String>
The current pagination position in the paged result set.
Implementations§
source§impl GetUsagePlanKeysOutput
impl GetUsagePlanKeysOutput
sourcepub fn builder() -> GetUsagePlanKeysOutputBuilder
pub fn builder() -> GetUsagePlanKeysOutputBuilder
Creates a new builder-style object to manufacture GetUsagePlanKeysOutput
.
Trait Implementations§
source§impl Clone for GetUsagePlanKeysOutput
impl Clone for GetUsagePlanKeysOutput
source§fn clone(&self) -> GetUsagePlanKeysOutput
fn clone(&self) -> GetUsagePlanKeysOutput
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 GetUsagePlanKeysOutput
impl Debug for GetUsagePlanKeysOutput
source§impl PartialEq<GetUsagePlanKeysOutput> for GetUsagePlanKeysOutput
impl PartialEq<GetUsagePlanKeysOutput> for GetUsagePlanKeysOutput
source§fn eq(&self, other: &GetUsagePlanKeysOutput) -> bool
fn eq(&self, other: &GetUsagePlanKeysOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetUsagePlanKeysOutput
impl RequestId for GetUsagePlanKeysOutput
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 GetUsagePlanKeysOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetUsagePlanKeysOutput
impl Send for GetUsagePlanKeysOutput
impl Sync for GetUsagePlanKeysOutput
impl Unpin for GetUsagePlanKeysOutput
impl UnwindSafe for GetUsagePlanKeysOutput
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