Trait nccl::TryFrom [] [src]

pub trait TryFrom<T>: Sized {
    type Error;
    fn try_from(value: T) -> Result<Self, Self::Error>;
}

Allows safe type conversions. Copied from nightly stdlib.

Associated Types

Required Methods

Implementors