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§

source

fn convert_back(b: B) -> A

Make conversion back.

Implementors§

source§

impl<T> ConvertBack<T, T> for Identity