Struct google_videointelligence1::api::GoogleCloudVideointelligenceV1_FaceDetectionConfig[][src]

pub struct GoogleCloudVideointelligenceV1_FaceDetectionConfig {
    pub include_attributes: Option<bool>,
    pub include_bounding_boxes: Option<bool>,
    pub model: Option<String>,
}

Config for FACE_DETECTION.

This type is not used in any activity, and only used as part of another schema.

Fields

include_attributes: Option<bool>

Whether to enable face attributes detection, such as glasses, dark_glasses, mouth_open etc. Ignored if 'include_bounding_boxes' is set to false.

include_bounding_boxes: Option<bool>

Whether bounding boxes are included in the face annotation output.

model: Option<String>

Model to use for face detection. Supported values: "builtin/stable" (the default if unset) and "builtin/latest".

Trait Implementations

impl Clone for GoogleCloudVideointelligenceV1_FaceDetectionConfig[src]

impl Debug for GoogleCloudVideointelligenceV1_FaceDetectionConfig[src]

impl Default for GoogleCloudVideointelligenceV1_FaceDetectionConfig[src]

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

impl Part for GoogleCloudVideointelligenceV1_FaceDetectionConfig[src]

impl Serialize for GoogleCloudVideointelligenceV1_FaceDetectionConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for GoogleCloudVideointelligenceV1_FaceDetectionConfig[src]

impl Send for GoogleCloudVideointelligenceV1_FaceDetectionConfig[src]

impl Sync for GoogleCloudVideointelligenceV1_FaceDetectionConfig[src]

impl Unpin for GoogleCloudVideointelligenceV1_FaceDetectionConfig[src]

impl UnwindSafe for GoogleCloudVideointelligenceV1_FaceDetectionConfig[src]

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> Instrument for T[src]

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

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.