#[non_exhaustive]pub struct ListFieldsOutput {
pub fields: Option<Vec<FieldSummary>>,
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.fields: Option<Vec<FieldSummary>>
List of detailed field information.
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 ListFieldsOutput
impl ListFieldsOutput
sourcepub fn fields(&self) -> Option<&[FieldSummary]>
pub fn fields(&self) -> Option<&[FieldSummary]>
List of detailed field information.
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 ListFieldsOutput
impl ListFieldsOutput
sourcepub fn builder() -> ListFieldsOutputBuilder
pub fn builder() -> ListFieldsOutputBuilder
Creates a new builder-style object to manufacture ListFieldsOutput
.
Trait Implementations§
source§impl Clone for ListFieldsOutput
impl Clone for ListFieldsOutput
source§fn clone(&self) -> ListFieldsOutput
fn clone(&self) -> ListFieldsOutput
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 ListFieldsOutput
impl Debug for ListFieldsOutput
source§impl PartialEq for ListFieldsOutput
impl PartialEq for ListFieldsOutput
source§fn eq(&self, other: &ListFieldsOutput) -> bool
fn eq(&self, other: &ListFieldsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListFieldsOutput
impl RequestId for ListFieldsOutput
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 ListFieldsOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListFieldsOutput
impl Send for ListFieldsOutput
impl Sync for ListFieldsOutput
impl Unpin for ListFieldsOutput
impl UnwindSafe for ListFieldsOutput
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