[][src]Struct google_videointelligence1::GoogleCloudVideointelligenceV1_VideoContext

pub struct GoogleCloudVideointelligenceV1_VideoContext {
    pub shot_change_detection_config: Option<GoogleCloudVideointelligenceV1_ShotChangeDetectionConfig>,
    pub text_detection_config: Option<GoogleCloudVideointelligenceV1_TextDetectionConfig>,
    pub explicit_content_detection_config: Option<GoogleCloudVideointelligenceV1_ExplicitContentDetectionConfig>,
    pub speech_transcription_config: Option<GoogleCloudVideointelligenceV1_SpeechTranscriptionConfig>,
    pub object_tracking_config: Option<GoogleCloudVideointelligenceV1_ObjectTrackingConfig>,
    pub segments: Option<Vec<GoogleCloudVideointelligenceV1_VideoSegment>>,
    pub label_detection_config: Option<GoogleCloudVideointelligenceV1_LabelDetectionConfig>,
}

Video context and/or feature-specific parameters.

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

Fields

shot_change_detection_config: Option<GoogleCloudVideointelligenceV1_ShotChangeDetectionConfig>

Config for SHOT_CHANGE_DETECTION.

text_detection_config: Option<GoogleCloudVideointelligenceV1_TextDetectionConfig>

Config for TEXT_DETECTION.

explicit_content_detection_config: Option<GoogleCloudVideointelligenceV1_ExplicitContentDetectionConfig>

Config for EXPLICIT_CONTENT_DETECTION.

speech_transcription_config: Option<GoogleCloudVideointelligenceV1_SpeechTranscriptionConfig>

Config for SPEECH_TRANSCRIPTION.

object_tracking_config: Option<GoogleCloudVideointelligenceV1_ObjectTrackingConfig>

Config for OBJECT_TRACKING.

segments: Option<Vec<GoogleCloudVideointelligenceV1_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<GoogleCloudVideointelligenceV1_LabelDetectionConfig>

Config for LABEL_DETECTION.

Trait Implementations

impl Clone for GoogleCloudVideointelligenceV1_VideoContext[src]

impl Debug for GoogleCloudVideointelligenceV1_VideoContext[src]

impl Default for GoogleCloudVideointelligenceV1_VideoContext[src]

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

impl Part for GoogleCloudVideointelligenceV1_VideoContext[src]

impl Serialize for GoogleCloudVideointelligenceV1_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> 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> 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<T> Typeable for T where
    T: Any