Trait IntoCv

Source
pub trait IntoCv<T> {
    // Required method
    fn into_cv(self) -> T;
}
Expand description

Type conversion that is analogous to Into.

Required Methods§

Source

fn into_cv(self) -> T

Implementors§

Source§

impl<T, U> IntoCv<U> for T
where U: FromCv<T>,