IntoWithPH

Trait IntoWithPH 

Source
pub trait IntoWithPH<T, CTP: ConnectionToPlugin>: Sized {
    // Required method
    fn into_with_ph(self, ph: &mut PluginHandler<CTP>) -> T;
}
Expand description

The reflexive trait of FromWithPH.

Required Methods§

Source

fn into_with_ph(self, ph: &mut PluginHandler<CTP>) -> T

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T, CTP: ConnectionToPlugin> IntoWithPH<PluginVal, CTP> for T
where PluginVal: FromWithPH<T, CTP>,