pub trait IntoIntoDart<D: IntoDart> {
// Required method
fn into_into_dart(self) -> D;
}Expand description
Basically the Into trait.
We need this separate trait because we need to implement it for Vec
pub trait IntoIntoDart<D: IntoDart> {
// Required method
fn into_into_dart(self) -> D;
}Basically the Into trait.
We need this separate trait because we need to implement it for Vec