Trait linera_base::dyn_convert::DynInto
source · pub trait DynInto<To> {
// Required method
fn into_box(self: Box<Self>) -> To;
}
Expand description
An object-safe version of std::convert::Into
.
pub trait DynInto<To> {
// Required method
fn into_box(self: Box<Self>) -> To;
}
An object-safe version of std::convert::Into
.