1 2 3 4 5 6 7 8
use crate::api::ManagedTypeApi;
pub trait ManagedDefault<M>
where
M: ManagedTypeApi,
{
fn managed_default(api: M) -> Self;
}
1 2 3 4 5 6 7 8
use crate::api::ManagedTypeApi;
pub trait ManagedDefault<M>
where
M: ManagedTypeApi,
{
fn managed_default(api: M) -> Self;
}