Struct aws_sdk_rekognition::input::SearchFacesInput
source · [−]#[non_exhaustive]pub struct SearchFacesInput { /* private fields */ }Implementations
sourceimpl SearchFacesInput
impl SearchFacesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SearchFaces, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<SearchFaces, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<SearchFaces>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SearchFacesInput.
sourceimpl SearchFacesInput
impl SearchFacesInput
sourcepub fn collection_id(&self) -> Option<&str>
pub fn collection_id(&self) -> Option<&str>
ID of the collection the face belongs to.
sourcepub fn max_faces(&self) -> Option<i32>
pub fn max_faces(&self) -> Option<i32>
Maximum number of faces to return. The operation returns the maximum number of faces with the highest confidence in the match.
sourcepub fn face_match_threshold(&self) -> Option<f32>
pub fn face_match_threshold(&self) -> Option<f32>
Optional value specifying the minimum confidence in the face match to return. For example, don't return any matches where confidence in matches is less than 70%. The default value is 80%.
Trait Implementations
sourceimpl Clone for SearchFacesInput
impl Clone for SearchFacesInput
sourcefn clone(&self) -> SearchFacesInput
fn clone(&self) -> SearchFacesInput
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 SearchFacesInput
impl Debug for SearchFacesInput
sourceimpl PartialEq<SearchFacesInput> for SearchFacesInput
impl PartialEq<SearchFacesInput> for SearchFacesInput
sourcefn eq(&self, other: &SearchFacesInput) -> bool
fn eq(&self, other: &SearchFacesInput) -> bool
impl StructuralPartialEq for SearchFacesInput
Auto Trait Implementations
impl RefUnwindSafe for SearchFacesInput
impl Send for SearchFacesInput
impl Sync for SearchFacesInput
impl Unpin for SearchFacesInput
impl UnwindSafe for SearchFacesInput
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