pub struct SynthClass<CF> {
pub factory: CF,
pub info: ClassInfo<'static>,
}Expand description
Information about a synth component
Fields§
§factory: CFThe actual factory.
info: ClassInfo<'static>Information about the component
Auto Trait Implementations§
impl<CF> Freeze for SynthClass<CF>where
CF: Freeze,
impl<CF> RefUnwindSafe for SynthClass<CF>where
CF: RefUnwindSafe,
impl<CF> Send for SynthClass<CF>where
CF: Send,
impl<CF> Sync for SynthClass<CF>where
CF: Sync,
impl<CF> Unpin for SynthClass<CF>where
CF: Unpin,
impl<CF> UnwindSafe for SynthClass<CF>where
CF: UnwindSafe,
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> 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