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