pub trait Sqrt {
type Output;
// Required method
fn sqrt(self) -> Self::Output;
}Expand description
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
Implementors§
Source§impl<'a, T, S, const D: usize> Sqrt for &RecordTensor<'a, T, S, D>
Operation for a referenced record tensor of some type.
impl<'a, T, S, const D: usize> Sqrt for &RecordTensor<'a, T, S, D>
Operation for a referenced record tensor of some type.
type Output = RecordContainer<'a, T, TensorView<(T, usize), Tensor<(T, usize), D>, D>, D>
Source§impl<'a, T, S, const D: usize> Sqrt for RecordTensor<'a, T, S, D>
Operation for a record tensor of some type.
impl<'a, T, S, const D: usize> Sqrt for RecordTensor<'a, T, S, D>
Operation for a record tensor of some type.
type Output = RecordContainer<'a, T, TensorView<(T, usize), Tensor<(T, usize), D>, D>, D>
Source§impl<'a, T, S> Sqrt for &RecordMatrix<'a, T, S>
Operation for a referenced record matrix of some type.
impl<'a, T, S> Sqrt for &RecordMatrix<'a, T, S>
Operation for a referenced record matrix of some type.
type Output = RecordContainer<'a, T, MatrixView<(T, usize), Matrix<(T, usize)>>, 2>
Source§impl<'a, T, S> Sqrt for RecordMatrix<'a, T, S>
Operation for a record matrix of some type.
impl<'a, T, S> Sqrt for RecordMatrix<'a, T, S>
Operation for a record matrix of some type.