pub struct AcousticStatus {
pub position: f64,
pub effective_rate: f64,
pub requested_window_position: Option<f64>,
pub ended: bool,
pub output_length: usize,
}Fields§
§position: f64§effective_rate: f64§requested_window_position: Option<f64>§ended: bool§output_length: usizeTrait Implementations§
Source§impl Clone for AcousticStatus
impl Clone for AcousticStatus
Source§fn clone(&self) -> AcousticStatus
fn clone(&self) -> AcousticStatus
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 moreimpl Copy for AcousticStatus
Source§impl Debug for AcousticStatus
impl Debug for AcousticStatus
Auto Trait Implementations§
impl Freeze for AcousticStatus
impl RefUnwindSafe for AcousticStatus
impl Send for AcousticStatus
impl Sync for AcousticStatus
impl Unpin for AcousticStatus
impl UnsafeUnpin for AcousticStatus
impl UnwindSafe for AcousticStatus
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