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

pub struct WordInfo {
    pub start_time: Option<Duration>,
    pub end_time: Option<Duration>,
    pub word: String,
}

Word-specific information for recognized words. Word information is only included in the response when certain request parameters are set, such as enable_word_time_offsets.

Fields

start_time: Option<Duration>

Output only. Time offset relative to the beginning of the audio, and corresponding to the start of the spoken word. This field is only set if enable_word_time_offsets=true and only in the top hypothesis. This is an experimental feature and the accuracy of the time offset can vary.

end_time: Option<Duration>

Output only. Time offset relative to the beginning of the audio, and corresponding to the end of the spoken word. This field is only set if enable_word_time_offsets=true and only in the top hypothesis. This is an experimental feature and the accuracy of the time offset can vary.

word: String

Output only. The word corresponding to this set of information.

Trait Implementations

impl Clone for WordInfo[src]

impl Debug for WordInfo[src]

impl Default for WordInfo[src]

impl Message for WordInfo[src]

impl PartialEq<WordInfo> for WordInfo[src]

impl StructuralPartialEq for WordInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for WordInfo

impl Send for WordInfo

impl Sync for WordInfo

impl Unpin for WordInfo

impl UnwindSafe for WordInfo

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]