pub struct SpeechSegment {
pub start_time: f64,
pub end_time: f64,
pub duration: f64,
}Expand description
Individual speech segment identified by VAD.
Represents a continuous segment of detected speech with timing and confidence information.
Fields§
§start_time: f64Start time of the speech segment in seconds
end_time: f64End time of the speech segment in seconds
duration: f64Duration of the speech segment in seconds
Trait Implementations§
Source§impl Clone for SpeechSegment
impl Clone for SpeechSegment
Source§fn clone(&self) -> SpeechSegment
fn clone(&self) -> SpeechSegment
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 moreAuto Trait Implementations§
impl Freeze for SpeechSegment
impl RefUnwindSafe for SpeechSegment
impl Send for SpeechSegment
impl Sync for SpeechSegment
impl Unpin for SpeechSegment
impl UnwindSafe for SpeechSegment
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