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: InstrumentThe parsed instrument
table: TableTable associated with the instrument.
eq: Option<Equ>If the instrument was referencing an EQ, the effectively parsed EQ.
version: VersionInstrument file version
Implementations§
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