[−][src]Trait sm_ext::TryIntoPlugin
Trait to support conversions to/from cell_t that require an IPluginContext for access to plugin memory.
As with Rust's TryInto and TryFrom, this is implemented automatically
for types that implement TryFromPlugin which you should prefer to implement instead.
Associated Types
type Error
Required methods
fn try_into_plugin(self, ctx: &'a IPluginContext) -> Result<T, Self::Error>
Implementors
impl<'a, T, U> TryIntoPlugin<'a, U> for T where
U: TryFromPlugin<'a, T>, [src]
U: TryFromPlugin<'a, T>,