pub struct ClassInfo<'a> {
pub name: &'a str,
pub cid: ClassID,
pub edit_controller_cid: ClassID,
pub ui_initial_size: UiSize,
}
Expand description
Information about a VST3 component
Fields§
§name: &'a str
User-visibile name of the component.
cid: ClassID
Class ID for the processor component. This is used by the host to identify the VST.
edit_controller_cid: ClassID
Class ID for the so-called “edit controller” component. This is arbitrary but must be unique.
ui_initial_size: UiSize
Initial size of the UI in logical pixels
Trait Implementations§
impl<'a> Copy for ClassInfo<'a>
Auto Trait Implementations§
impl<'a> Freeze for ClassInfo<'a>
impl<'a> RefUnwindSafe for ClassInfo<'a>
impl<'a> Send for ClassInfo<'a>
impl<'a> Sync for ClassInfo<'a>
impl<'a> Unpin for ClassInfo<'a>
impl<'a> UnwindSafe for ClassInfo<'a>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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