pub struct BasicHeaderInfo {
pub min_freq: f64,
pub max_freq: f64,
pub ref_scale: &'static str,
pub sweep_count: u32,
pub sweep_length: u32,
pub first_bin_freq_hz: f64,
pub bin_size_hz: f64,
pub center_freq_hz: f64,
pub span_hz: f64,
pub rbw_hz: f64,
pub ref_level: f32,
}Fields§
§min_freq: f64§max_freq: f64§ref_scale: &'static str§sweep_count: u32§sweep_length: u32§first_bin_freq_hz: f64§bin_size_hz: f64§center_freq_hz: f64§span_hz: f64§rbw_hz: f64§ref_level: f32Auto Trait Implementations§
impl Freeze for BasicHeaderInfo
impl RefUnwindSafe for BasicHeaderInfo
impl Send for BasicHeaderInfo
impl Sync for BasicHeaderInfo
impl Unpin for BasicHeaderInfo
impl UnwindSafe for BasicHeaderInfo
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
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