pub enum TimestampGranularity {
Word,
Segment,
}Expand description
Timestamp granularity for verbose transcription.
Variants§
Word
Word-level timestamps (incurs additional latency).
Segment
Segment-level timestamps (no additional latency).
Trait Implementations§
Source§impl Clone for TimestampGranularity
impl Clone for TimestampGranularity
Source§fn clone(&self) -> TimestampGranularity
fn clone(&self) -> TimestampGranularity
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TimestampGranularity
impl Debug for TimestampGranularity
Source§impl<'de> Deserialize<'de> for TimestampGranularity
impl<'de> Deserialize<'de> for TimestampGranularity
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for TimestampGranularity
impl Serialize for TimestampGranularity
impl Copy for TimestampGranularity
Auto Trait Implementations§
impl Freeze for TimestampGranularity
impl RefUnwindSafe for TimestampGranularity
impl Send for TimestampGranularity
impl Sync for TimestampGranularity
impl Unpin for TimestampGranularity
impl UnwindSafe for TimestampGranularity
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more