pub struct Pitch<T>where
T: Float,{
pub frequency: T,
pub clarity: T,
}
Expand description
A pitch’s frequency
as well as clarity
, which is a measure
of confidence in the pitch detection.
Fields§
§frequency: T
§clarity: T
Auto Trait Implementations§
impl<T> Freeze for Pitch<T>where
T: Freeze,
impl<T> RefUnwindSafe for Pitch<T>where
T: RefUnwindSafe,
impl<T> Send for Pitch<T>
impl<T> Sync for Pitch<T>
impl<T> Unpin for Pitch<T>where
T: Unpin,
impl<T> UnwindSafe for Pitch<T>where
T: UnwindSafe,
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