pub struct SpectralBin {
pub frequency: f64,
pub power: f64,
}Expand description
Single spectral bin.
Fields§
§frequency: f64Normalized frequency (0.0 to 0.5).
power: f64Trait Implementations§
Source§impl Clone for SpectralBin
impl Clone for SpectralBin
Source§fn clone(&self) -> SpectralBin
fn clone(&self) -> SpectralBin
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 moreSource§impl Debug for SpectralBin
impl Debug for SpectralBin
Auto Trait Implementations§
impl Freeze for SpectralBin
impl RefUnwindSafe for SpectralBin
impl Send for SpectralBin
impl Sync for SpectralBin
impl Unpin for SpectralBin
impl UnsafeUnpin for SpectralBin
impl UnwindSafe for SpectralBin
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