Trait cv_convert::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 Twhere U: FromCv<T>,