#[repr(u8)]pub enum FormatId {
Unknown = 0,
Clap = 1,
Vst3 = 2,
AuV2 = 3,
AuV3 = 4,
Vst2 = 5,
Lv2 = 6,
Aax = 7,
}Expand description
Numeric tag for the format that produced the payload. Lets the host refuse to feed a VST3 blob to a CLAP plugin.
Variants§
Unknown = 0
Reserved sentinel — never written.
Clap = 1
CLAP.
Vst3 = 2
VST3.
AuV2 = 3
AU v2 (auFX / aufx etc.).
AuV3 = 4
AU v3 (NSExtension-based).
Vst2 = 5
VST2.
Lv2 = 6
LV2.
Aax = 7
AAX.
Trait Implementations§
impl Copy for FormatId
impl Eq for FormatId
impl StructuralPartialEq for FormatId
Auto Trait Implementations§
impl Freeze for FormatId
impl RefUnwindSafe for FormatId
impl Send for FormatId
impl Sync for FormatId
impl Unpin for FormatId
impl UnsafeUnpin for FormatId
impl UnwindSafe for FormatId
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