#[non_exhaustive]pub struct DeleteFacesOutput {
pub deleted_faces: Option<Vec<String>>,
pub unsuccessful_face_deletions: Option<Vec<UnsuccessfulFaceDeletion>>,
/* 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.deleted_faces: Option<Vec<String>>An array of strings (face IDs) of the faces that were deleted.
unsuccessful_face_deletions: Option<Vec<UnsuccessfulFaceDeletion>>An array of any faces that weren't deleted.
Implementations§
source§impl DeleteFacesOutput
impl DeleteFacesOutput
sourcepub fn deleted_faces(&self) -> &[String]
pub fn deleted_faces(&self) -> &[String]
An array of strings (face IDs) of the faces that were deleted.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .deleted_faces.is_none().
sourcepub fn unsuccessful_face_deletions(&self) -> &[UnsuccessfulFaceDeletion]
pub fn unsuccessful_face_deletions(&self) -> &[UnsuccessfulFaceDeletion]
An array of any faces that weren't deleted.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .unsuccessful_face_deletions.is_none().
source§impl DeleteFacesOutput
impl DeleteFacesOutput
sourcepub fn builder() -> DeleteFacesOutputBuilder
pub fn builder() -> DeleteFacesOutputBuilder
Creates a new builder-style object to manufacture DeleteFacesOutput.
Trait Implementations§
source§impl Clone for DeleteFacesOutput
impl Clone for DeleteFacesOutput
source§fn clone(&self) -> DeleteFacesOutput
fn clone(&self) -> DeleteFacesOutput
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 DeleteFacesOutput
impl Debug for DeleteFacesOutput
source§impl PartialEq for DeleteFacesOutput
impl PartialEq for DeleteFacesOutput
source§fn eq(&self, other: &DeleteFacesOutput) -> bool
fn eq(&self, other: &DeleteFacesOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DeleteFacesOutput
impl RequestId for DeleteFacesOutput
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 DeleteFacesOutput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteFacesOutput
impl Send for DeleteFacesOutput
impl Sync for DeleteFacesOutput
impl Unpin for DeleteFacesOutput
impl UnwindSafe for DeleteFacesOutput
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
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>
Creates a shared type from an unshared type.