#[non_exhaustive]pub struct DataSourceIntrospectionResult {
pub models: Option<Vec<DataSourceIntrospectionModel>>,
pub next_token: Option<String>,
}
Expand description
Represents the output of a DataSourceIntrospectionResult
. This is the populated result of a GetDataSourceIntrospection
operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.models: Option<Vec<DataSourceIntrospectionModel>>
The array of DataSourceIntrospectionModel
objects.
next_token: Option<String>
Determines the number of types to be returned in a single response before paginating. This value is typically taken from nextToken
value from the previous response.
Implementations§
source§impl DataSourceIntrospectionResult
impl DataSourceIntrospectionResult
sourcepub fn models(&self) -> &[DataSourceIntrospectionModel]
pub fn models(&self) -> &[DataSourceIntrospectionModel]
The array of DataSourceIntrospectionModel
objects.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .models.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Determines the number of types to be returned in a single response before paginating. This value is typically taken from nextToken
value from the previous response.
source§impl DataSourceIntrospectionResult
impl DataSourceIntrospectionResult
sourcepub fn builder() -> DataSourceIntrospectionResultBuilder
pub fn builder() -> DataSourceIntrospectionResultBuilder
Creates a new builder-style object to manufacture DataSourceIntrospectionResult
.
Trait Implementations§
source§impl Clone for DataSourceIntrospectionResult
impl Clone for DataSourceIntrospectionResult
source§fn clone(&self) -> DataSourceIntrospectionResult
fn clone(&self) -> DataSourceIntrospectionResult
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DataSourceIntrospectionResult
impl PartialEq for DataSourceIntrospectionResult
source§fn eq(&self, other: &DataSourceIntrospectionResult) -> bool
fn eq(&self, other: &DataSourceIntrospectionResult) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DataSourceIntrospectionResult
Auto Trait Implementations§
impl Freeze for DataSourceIntrospectionResult
impl RefUnwindSafe for DataSourceIntrospectionResult
impl Send for DataSourceIntrospectionResult
impl Sync for DataSourceIntrospectionResult
impl Unpin for DataSourceIntrospectionResult
impl UnwindSafe for DataSourceIntrospectionResult
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more