[][src]Struct gcp_client::google::cloud::videointelligence::v1beta2::VideoContext

pub struct VideoContext {
    pub segments: Vec<VideoSegment>,
    pub label_detection_config: Option<LabelDetectionConfig>,
    pub shot_change_detection_config: Option<ShotChangeDetectionConfig>,
    pub explicit_content_detection_config: Option<ExplicitContentDetectionConfig>,
    pub face_detection_config: Option<FaceDetectionConfig>,
}

Video context and/or feature-specific parameters.

Fields

segments: Vec<VideoSegment>

Video segments to annotate. The segments may overlap and are not required to be contiguous or span the whole video. If unspecified, each video is treated as a single segment.

label_detection_config: Option<LabelDetectionConfig>

Config for LABEL_DETECTION.

shot_change_detection_config: Option<ShotChangeDetectionConfig>

Config for SHOT_CHANGE_DETECTION.

explicit_content_detection_config: Option<ExplicitContentDetectionConfig>

Config for EXPLICIT_CONTENT_DETECTION.

face_detection_config: Option<FaceDetectionConfig>

Config for FACE_DETECTION.

Trait Implementations

impl Clone for VideoContext[src]

impl Debug for VideoContext[src]

impl Default for VideoContext[src]

impl Message for VideoContext[src]

impl PartialEq<VideoContext> for VideoContext[src]

impl StructuralPartialEq for VideoContext[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> 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> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]