Struct gapi_grpc::google::cloud::videointelligence::v1p1beta1::VideoContext[][src]

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 speech_transcription_config: Option<SpeechTranscriptionConfig>,
}

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.

speech_transcription_config: Option<SpeechTranscriptionConfig>

Config for SPEECH_TRANSCRIPTION.

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

impl RefUnwindSafe for VideoContext

impl Send for VideoContext

impl Sync for VideoContext

impl Unpin for VideoContext

impl UnwindSafe for VideoContext

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]