pub struct DialogueSegment {
pub start_time: f32,
pub end_time: f32,
pub intensity: f32,
}Expand description
Dialogue segment detected in audio.
Represents a continuous segment of speech or dialogue detected through audio analysis.
Fields§
§start_time: f32Start time of the dialogue segment in seconds
end_time: f32End time of the dialogue segment in seconds
intensity: f32Intensity or confidence level of the dialogue detection
Trait Implementations§
Source§impl Clone for DialogueSegment
impl Clone for DialogueSegment
Source§fn clone(&self) -> DialogueSegment
fn clone(&self) -> DialogueSegment
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 DialogueSegment
impl RefUnwindSafe for DialogueSegment
impl Send for DialogueSegment
impl Sync for DialogueSegment
impl Unpin for DialogueSegment
impl UnwindSafe for DialogueSegment
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