bridge_adapters::lisp_adapters

Trait SlInto

Source
pub trait SlInto<T>: Sized
where T: BridgedType,
{ // Required method fn sl_into(self, vm: &mut SloshVm) -> VMResult<T>; }
Expand description

Inverse of SlFrom

Required Methods§

Source

fn sl_into(self, vm: &mut SloshVm) -> VMResult<T>

Converts this type into the (usually inferred) input type.

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, U> SlInto<U> for T
where U: SlFrom<T>,