Trait nccl::TryInto [] [src]

pub trait TryInto<T>: Sized {
    type Error;
    fn try_into(self) -> Result<T, Self::Error>;
}

Allows safe type conversions. Copied from nightly stdlib.

Associated Types

Required Methods

Implementors