[][src]Struct gcp_client::google::cloud::speech::v1::LongRunningRecognizeMetadata

pub struct LongRunningRecognizeMetadata {
    pub progress_percent: i32,
    pub start_time: Option<Timestamp>,
    pub last_update_time: Option<Timestamp>,
}

Describes the progress of a long-running LongRunningRecognize call. It is included in the metadata field of the Operation returned by the GetOperation call of the google::longrunning::Operations service.

Fields

progress_percent: i32

Approximate percentage of audio processed thus far. Guaranteed to be 100 when the audio is fully processed and the results are available.

start_time: Option<Timestamp>

Time when the request was received.

last_update_time: Option<Timestamp>

Time of the most recent processing update.

Trait Implementations

impl Clone for LongRunningRecognizeMetadata[src]

impl Debug for LongRunningRecognizeMetadata[src]

impl Default for LongRunningRecognizeMetadata[src]

impl Message for LongRunningRecognizeMetadata[src]

impl PartialEq<LongRunningRecognizeMetadata> for LongRunningRecognizeMetadata[src]

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