Trait frame::traits::ConvertBack
pub trait ConvertBack<A, B>: Convert<A, B> {
// Required method
fn convert_back(b: B) -> A;
}Expand description
Reversing infallible conversion trait. Generic over both source and destination types.
This specifically reverses the conversion.
Required Methods§
fn convert_back(b: B) -> A
fn convert_back(b: B) -> A
Make conversion back.