[][src]Struct gcp_client::google::cloud::videointelligence::v1::VideoAnnotationProgress

pub struct VideoAnnotationProgress {
    pub input_uri: String,
    pub progress_percent: i32,
    pub start_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub feature: i32,
    pub segment: Option<VideoSegment>,
}

Annotation progress for a single video.

Fields

input_uri: String

Video file location in Google Cloud Storage.

progress_percent: i32

Approximate percentage processed thus far. Guaranteed to be 100 when fully processed.

start_time: Option<Timestamp>

Time when the request was received.

update_time: Option<Timestamp>

Time of the most recent update.

feature: i32

Specifies which feature is being tracked if the request contains more than one features.

segment: Option<VideoSegment>

Specifies which segment is being tracked if the request contains more than one segments.

Implementations

impl VideoAnnotationProgress[src]

pub fn feature(&self) -> Feature[src]

Returns the enum value of feature, or the default if the field is set to an invalid enum value.

pub fn set_feature(&mut self, value: Feature)[src]

Sets feature to the provided enum value.

Trait Implementations

impl Clone for VideoAnnotationProgress[src]

impl Debug for VideoAnnotationProgress[src]

impl Default for VideoAnnotationProgress[src]

impl Message for VideoAnnotationProgress[src]

impl PartialEq<VideoAnnotationProgress> for VideoAnnotationProgress[src]

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