pub struct WindowSonance {
pub window: SoundingWindow,
pub pitch: Vec<MetricReport>,
pub acoustic: Vec<MetricReport>,
pub ratio: MetricReport,
pub commonality: MetricReport,
pub leading: MetricReport,
}Expand description
All metric families for one sounding window.
Fields§
§window: SoundingWindowSource window, including multiplicity and identities.
pitch: Vec<MetricReport>Set-domain pitch models, each retained separately.
acoustic: Vec<MetricReport>Frequency- and amplitude-domain models, each retained separately.
ratio: MetricReportExact-ratio contextual model.
commonality: MetricReportEvent-commonality contextual model.
leading: MetricReportVoice-leading contextual model.
Trait Implementations§
Source§impl Clone for WindowSonance
impl Clone for WindowSonance
Source§fn clone(&self) -> WindowSonance
fn clone(&self) -> WindowSonance
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 moreSource§impl Debug for WindowSonance
impl Debug for WindowSonance
Source§impl PartialEq for WindowSonance
impl PartialEq for WindowSonance
impl StructuralPartialEq for WindowSonance
Auto Trait Implementations§
impl Freeze for WindowSonance
impl RefUnwindSafe for WindowSonance
impl Send for WindowSonance
impl Sync for WindowSonance
impl Unpin for WindowSonance
impl UnsafeUnpin for WindowSonance
impl UnwindSafe for WindowSonance
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more