pub struct SimpleFFGLHandler<T: SimpleFFGLInstance> { /* private fields */ }Expand description
This is a handler that just delegates to a SimpleFFGLInstance
Trait Implementations§
Source§impl<T: SimpleFFGLInstance> FFGLHandler for SimpleFFGLHandler<T>
impl<T: SimpleFFGLInstance> FFGLHandler for SimpleFFGLHandler<T>
type Instance = T
type NewInstanceError = Infallible
fn num_params(&self) -> usize
fn param_info(&'static self, index: usize) -> &'static dyn ParamInfo
fn plugin_info(&self) -> PluginInfo
fn new_instance( &self, inst_data: &FFGLData, ) -> Result<Self::Instance, Self::NewInstanceError>
Auto Trait Implementations§
impl<T> Freeze for SimpleFFGLHandler<T>
impl<T> RefUnwindSafe for SimpleFFGLHandler<T>where
T: RefUnwindSafe,
impl<T> Send for SimpleFFGLHandler<T>where
T: Send,
impl<T> Sync for SimpleFFGLHandler<T>where
T: Sync,
impl<T> Unpin for SimpleFFGLHandler<T>where
T: Unpin,
impl<T> UnwindSafe for SimpleFFGLHandler<T>where
T: 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