Struct aws_sdk_rekognition::input::DetectTextInput
source · [−]#[non_exhaustive]pub struct DetectTextInput { /* private fields */ }Implementations
sourceimpl DetectTextInput
impl DetectTextInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DetectText, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DetectText, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DetectText>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DetectTextInput.
sourceimpl DetectTextInput
impl DetectTextInput
sourcepub fn image(&self) -> Option<&Image>
pub fn image(&self) -> Option<&Image>
The input image as base64-encoded bytes or an Amazon S3 object. If you use the AWS CLI to call Amazon Rekognition operations, you can't pass image bytes.
If you are using an AWS SDK to call Amazon Rekognition, you might not need to base64-encode image bytes passed using the Bytes field. For more information, see Images in the Amazon Rekognition developer guide.
sourcepub fn filters(&self) -> Option<&DetectTextFilters>
pub fn filters(&self) -> Option<&DetectTextFilters>
Optional parameters that let you set the criteria that the text must meet to be included in your response.
Trait Implementations
sourceimpl Clone for DetectTextInput
impl Clone for DetectTextInput
sourcefn clone(&self) -> DetectTextInput
fn clone(&self) -> DetectTextInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for DetectTextInput
impl Debug for DetectTextInput
sourceimpl PartialEq<DetectTextInput> for DetectTextInput
impl PartialEq<DetectTextInput> for DetectTextInput
sourcefn eq(&self, other: &DetectTextInput) -> bool
fn eq(&self, other: &DetectTextInput) -> bool
impl StructuralPartialEq for DetectTextInput
Auto Trait Implementations
impl RefUnwindSafe for DetectTextInput
impl Send for DetectTextInput
impl Sync for DetectTextInput
impl Unpin for DetectTextInput
impl UnwindSafe for DetectTextInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more