Trait tea_dtype::IntoCast

source ·
pub trait IntoCast: IsNone<Inner = Self> + Clone + Sized {
    // Provided method
    fn into_cast<T: IsNone>(self) -> T::Cast<Self>
       where T::Inner: Cast<Self::Inner> { ... }
}

Provided Methods§

source

fn into_cast<T: IsNone>(self) -> T::Cast<Self>
where T::Inner: Cast<Self::Inner>,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<U: IsNone<Inner = U> + Clone> IntoCast for U