Struct aws_sdk_textract::operation::get_adapter::GetAdapterOutput
source · #[non_exhaustive]pub struct GetAdapterOutput {
pub adapter_id: Option<String>,
pub adapter_name: Option<String>,
pub creation_time: Option<DateTime>,
pub description: Option<String>,
pub feature_types: Option<Vec<FeatureType>>,
pub auto_update: Option<AutoUpdate>,
pub tags: Option<HashMap<String, String>>,
/* private fields */
}
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.adapter_id: Option<String>
A string identifying the adapter that information has been retrieved for.
adapter_name: Option<String>
The name of the requested adapter.
creation_time: Option<DateTime>
The date and time the requested adapter was created at.
description: Option<String>
The description for the requested adapter.
feature_types: Option<Vec<FeatureType>>
List of the targeted feature types for the requested adapter.
auto_update: Option<AutoUpdate>
Binary value indicating if the adapter is being automatically updated or not.
A set of tags (key-value pairs) associated with the adapter that has been retrieved.
Implementations§
source§impl GetAdapterOutput
impl GetAdapterOutput
sourcepub fn adapter_id(&self) -> Option<&str>
pub fn adapter_id(&self) -> Option<&str>
A string identifying the adapter that information has been retrieved for.
sourcepub fn adapter_name(&self) -> Option<&str>
pub fn adapter_name(&self) -> Option<&str>
The name of the requested adapter.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The date and time the requested adapter was created at.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description for the requested adapter.
sourcepub fn feature_types(&self) -> &[FeatureType]
pub fn feature_types(&self) -> &[FeatureType]
List of the targeted feature types for the requested adapter.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .feature_types.is_none()
.
sourcepub fn auto_update(&self) -> Option<&AutoUpdate>
pub fn auto_update(&self) -> Option<&AutoUpdate>
Binary value indicating if the adapter is being automatically updated or not.
A set of tags (key-value pairs) associated with the adapter that has been retrieved.
source§impl GetAdapterOutput
impl GetAdapterOutput
sourcepub fn builder() -> GetAdapterOutputBuilder
pub fn builder() -> GetAdapterOutputBuilder
Creates a new builder-style object to manufacture GetAdapterOutput
.
Trait Implementations§
source§impl Clone for GetAdapterOutput
impl Clone for GetAdapterOutput
source§fn clone(&self) -> GetAdapterOutput
fn clone(&self) -> GetAdapterOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetAdapterOutput
impl Debug for GetAdapterOutput
source§impl PartialEq for GetAdapterOutput
impl PartialEq for GetAdapterOutput
source§fn eq(&self, other: &GetAdapterOutput) -> bool
fn eq(&self, other: &GetAdapterOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetAdapterOutput
impl RequestId for GetAdapterOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetAdapterOutput
Auto Trait Implementations§
impl Freeze for GetAdapterOutput
impl RefUnwindSafe for GetAdapterOutput
impl Send for GetAdapterOutput
impl Sync for GetAdapterOutput
impl Unpin for GetAdapterOutput
impl UnwindSafe for GetAdapterOutput
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> 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