#[non_exhaustive]pub struct ListLayoutsOutput {
pub layouts: Option<Vec<LayoutSummary>>,
pub next_token: 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.layouts: Option<Vec<LayoutSummary>>
The layouts for the domain.
next_token: Option<String>
The token for the next set of results. This is null if there are no more results to return.
Implementations§
source§impl ListLayoutsOutput
impl ListLayoutsOutput
sourcepub fn layouts(&self) -> Option<&[LayoutSummary]>
pub fn layouts(&self) -> Option<&[LayoutSummary]>
The layouts for the domain.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results. This is null if there are no more results to return.
source§impl ListLayoutsOutput
impl ListLayoutsOutput
sourcepub fn builder() -> ListLayoutsOutputBuilder
pub fn builder() -> ListLayoutsOutputBuilder
Creates a new builder-style object to manufacture ListLayoutsOutput
.
Trait Implementations§
source§impl Clone for ListLayoutsOutput
impl Clone for ListLayoutsOutput
source§fn clone(&self) -> ListLayoutsOutput
fn clone(&self) -> ListLayoutsOutput
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 ListLayoutsOutput
impl Debug for ListLayoutsOutput
source§impl PartialEq for ListLayoutsOutput
impl PartialEq for ListLayoutsOutput
source§fn eq(&self, other: &ListLayoutsOutput) -> bool
fn eq(&self, other: &ListLayoutsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListLayoutsOutput
impl RequestId for ListLayoutsOutput
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 ListLayoutsOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListLayoutsOutput
impl Send for ListLayoutsOutput
impl Sync for ListLayoutsOutput
impl Unpin for ListLayoutsOutput
impl UnwindSafe for ListLayoutsOutput
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