pub trait TanhOps: DeviceBase {
// Required methods
fn array<T: Num>(
to: *mut T,
other: *const T,
num_elm: usize,
to_stride: usize,
other_stride: usize,
);
fn array_assign<T: Num>(to: *mut T, num_elm: usize, to_stride: usize);
}
Required Methods§
fn array<T: Num>( to: *mut T, other: *const T, num_elm: usize, to_stride: usize, other_stride: usize, )
fn array_assign<T: Num>(to: *mut T, num_elm: usize, to_stride: usize)
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.