TryClone

Trait TryClone 

Source
pub trait TryClone: Sized {
    type Error;

    // Required method
    fn try_clone(&self) -> Result<Self, Self::Error>;
}

Required Associated Types§

Required Methods§

Source

fn try_clone(&self) -> Result<Self, Self::Error>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T, const N1: usize, const N2: usize> TryClone for CudaTensor2dPtr<T, N1, N2>
where T: Default + Debug,

Source§

impl<T, const N1: usize, const N2: usize, const N3: usize> TryClone for CudaTensor3dPtr<T, N1, N2, N3>
where T: Default + Debug,

Source§

impl<T, const N1: usize, const N2: usize, const N3: usize, const N4: usize> TryClone for CudaTensor4dPtr<T, N1, N2, N3, N4>
where T: Default + Debug,

Source§

impl<T, const N: usize> TryClone for CudaTensor1dPtr<T, N>
where T: Default + Debug,

Source§

impl<U, T> TryClone for CudaVec<U, T>