#[non_exhaustive]pub struct GetRestApisOutput {
pub items: Option<Vec<RestApi>>,
pub position: Option<String>,
/* private fields */
}
Expand description
Contains references to your APIs and links that guide you in how to interact with your collection. A collection offers a paginated view of your APIs.
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<RestApi>>
The current page of elements from this collection.
position: Option<String>
The current pagination position in the paged result set.
Implementations§
source§impl GetRestApisOutput
impl GetRestApisOutput
sourcepub fn builder() -> GetRestApisOutputBuilder
pub fn builder() -> GetRestApisOutputBuilder
Creates a new builder-style object to manufacture GetRestApisOutput
.
Trait Implementations§
source§impl Clone for GetRestApisOutput
impl Clone for GetRestApisOutput
source§fn clone(&self) -> GetRestApisOutput
fn clone(&self) -> GetRestApisOutput
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 GetRestApisOutput
impl Debug for GetRestApisOutput
source§impl PartialEq<GetRestApisOutput> for GetRestApisOutput
impl PartialEq<GetRestApisOutput> for GetRestApisOutput
source§fn eq(&self, other: &GetRestApisOutput) -> bool
fn eq(&self, other: &GetRestApisOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetRestApisOutput
impl RequestId for GetRestApisOutput
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 GetRestApisOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetRestApisOutput
impl Send for GetRestApisOutput
impl Sync for GetRestApisOutput
impl Unpin for GetRestApisOutput
impl UnwindSafe for GetRestApisOutput
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