Struct gapi_grpc::google::cloud::contactcenterinsights::v1::conversation::transcript::transcript_segment::WordInfo[][src]

pub struct WordInfo {
    pub start_offset: Option<Duration>,
    pub end_offset: Option<Duration>,
    pub word: String,
    pub confidence: f32,
}

Word-level info for words in a transcript.

Fields

start_offset: Option<Duration>

Time offset of the start of this word relative to the beginning of the total conversation.

end_offset: Option<Duration>

Time offset of the end of this word relative to the beginning of the total conversation.

word: String

The word itself. Includes punctuation marks that surround the word.

confidence: f32

A confidence estimate between 0.0 and 1.0 of the fidelity of this word. A default value of 0.0 indicates that the value is unset.

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]