pub enum GuiMode {
Embedded = 0,
Floating = 1,
}Expand description
GUI mode requested by the DAW.
Variants§
Embedded = 0
DAW provides a parent window; plugin UI should be embedded.
Floating = 1
DAW cannot provide a parent window; plugin-host must create a top-level window.
Implementations§
Trait Implementations§
impl Copy for GuiMode
impl Eq for GuiMode
impl StructuralPartialEq for GuiMode
Auto Trait Implementations§
impl Freeze for GuiMode
impl RefUnwindSafe for GuiMode
impl Send for GuiMode
impl Sync for GuiMode
impl Unpin for GuiMode
impl UnsafeUnpin for GuiMode
impl UnwindSafe for GuiMode
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