pub struct TranscriptionSegment {
pub id: String,
pub text: String,
pub start_time: u64,
pub end_time: u64,
pub final: bool,
pub language: String,
}Fields§
§id: String§text: String§start_time: u64§end_time: u64§final: bool§language: StringTrait Implementations§
Source§impl Clone for TranscriptionSegment
impl Clone for TranscriptionSegment
Source§fn clone(&self) -> TranscriptionSegment
fn clone(&self) -> TranscriptionSegment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TranscriptionSegment
impl Debug for TranscriptionSegment
Source§impl Default for TranscriptionSegment
impl Default for TranscriptionSegment
Source§fn default() -> TranscriptionSegment
fn default() -> TranscriptionSegment
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TranscriptionSegment
impl RefUnwindSafe for TranscriptionSegment
impl Send for TranscriptionSegment
impl Sync for TranscriptionSegment
impl Unpin for TranscriptionSegment
impl UnsafeUnpin for TranscriptionSegment
impl UnwindSafe for TranscriptionSegment
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