[][src]Struct gcp_client::google::cloud::videointelligence::v1p3beta1::StreamingVideoAnnotationResults

pub struct StreamingVideoAnnotationResults {
    pub shot_annotations: Vec<VideoSegment>,
    pub label_annotations: Vec<LabelAnnotation>,
    pub explicit_annotation: Option<ExplicitContentAnnotation>,
    pub object_annotations: Vec<ObjectTrackingAnnotation>,
}

Streaming annotation results corresponding to a portion of the video that is currently being processed.

Fields

shot_annotations: Vec<VideoSegment>

Shot annotation results. Each shot is represented as a video segment.

label_annotations: Vec<LabelAnnotation>

Label annotation results.

explicit_annotation: Option<ExplicitContentAnnotation>

Explicit content annotation results.

object_annotations: Vec<ObjectTrackingAnnotation>

Object tracking results.

Trait Implementations

impl Clone for StreamingVideoAnnotationResults[src]

impl Debug for StreamingVideoAnnotationResults[src]

impl Default for StreamingVideoAnnotationResults[src]

impl Message for StreamingVideoAnnotationResults[src]

impl PartialEq<StreamingVideoAnnotationResults> for StreamingVideoAnnotationResults[src]

impl StructuralPartialEq for StreamingVideoAnnotationResults[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]