bridge_adapters::lisp_adapters

Trait SlIntoRefMut

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

Inverse of SlFromRefMut

Required Methods§

Source

fn sl_into_ref_mut(self, vm: &'a mut SloshVm) -> VMResult<T>

Converts to this type from the 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<'a, T, U> SlIntoRefMut<'a, U> for T
where T: BridgedType, U: SlFromRefMut<'a, T> + 'a,