pub struct InstrumentWithEq {
pub instrument: Instrument,
pub table: Table,
pub eq: Option<Equ>,
pub version: Version,
}
Expand description
Firmware 4.1 introduce files with an instrument definition and an EQ. This structure represent the result of parsing such insturment with an optional EQ.
Fields§
§instrument: Instrument
The parsed instrument
table: Table
Table associated with the instrument.
eq: Option<Equ>
If the instrument was referencing an EQ, the effectively parsed EQ.
version: Version
Instrument file version
Implementations§
Source§impl InstrumentWithEq
impl InstrumentWithEq
pub fn table_view(&self) -> TableView<'_>
Auto Trait Implementations§
impl Freeze for InstrumentWithEq
impl RefUnwindSafe for InstrumentWithEq
impl Send for InstrumentWithEq
impl Sync for InstrumentWithEq
impl Unpin for InstrumentWithEq
impl UnwindSafe for InstrumentWithEq
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