pub trait ManagedInto<M, T>
where M: ManagedTypeApi,
{ // Required method fn managed_into(self, api: M) -> T; }

Required Methods§

source

fn managed_into(self, api: M) -> T

Implementors§

source§

impl<M, F, T> ManagedInto<M, T> for F
where T: ManagedFrom<M, F>, M: ManagedTypeApi,