[][src]Struct rusoto_rekognition::DescribeCollectionResponse

pub struct DescribeCollectionResponse {
    pub collection_arn: Option<String>,
    pub creation_timestamp: Option<f64>,
    pub face_count: Option<i64>,
    pub face_model_version: Option<String>,
}

Fields

collection_arn: Option<String>

The Amazon Resource Name (ARN) of the collection.

creation_timestamp: Option<f64>

The number of milliseconds since the Unix epoch time until the creation of the collection. The Unix epoch time is 00:00:00 Coordinated Universal Time (UTC), Thursday, 1 January 1970.

face_count: Option<i64>

The number of faces that are indexed into the collection. To index faces into a collection, use IndexFaces.

face_model_version: Option<String>

The version of the face model that's used by the collection for face detection.

For more information, see Model Versioning in the Amazon Rekognition Developer Guide.

Trait Implementations

impl Clone for DescribeCollectionResponse[src]

impl Debug for DescribeCollectionResponse[src]

impl Default for DescribeCollectionResponse[src]

impl<'de> Deserialize<'de> for DescribeCollectionResponse[src]

impl PartialEq<DescribeCollectionResponse> for DescribeCollectionResponse[src]

impl StructuralPartialEq for DescribeCollectionResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.