pub struct StreamingResult {
pub total_audio_seconds: f64,
pub total_infer_seconds: f64,
pub chunk_count: usize,
}Expand description
Streaming synthesis result summary
Fields§
§total_audio_seconds: f64Total audio duration in seconds across all chunks
total_infer_seconds: f64Total inference wall-clock time in seconds across all chunks
chunk_count: usizeNumber of chunks synthesized
Trait Implementations§
Source§impl Clone for StreamingResult
impl Clone for StreamingResult
Source§fn clone(&self) -> StreamingResult
fn clone(&self) -> StreamingResult
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 StreamingResult
impl RefUnwindSafe for StreamingResult
impl Send for StreamingResult
impl Sync for StreamingResult
impl Unpin for StreamingResult
impl UnsafeUnpin for StreamingResult
impl UnwindSafe for StreamingResult
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