pub struct Rank<const N: usize>;Expand description
Static tensor rank marker.
§Examples
use tenferro_tensor_core::{Rank, TensorRank};
assert_eq!(Rank::<3>::RANK, Some(3));Trait Implementations§
Source§impl<const N: usize> TensorRank for Rank<N>
impl<const N: usize> TensorRank for Rank<N>
Source§fn shape_from_vec(shape: ShapeVec) -> Result<Self::Shape>
fn shape_from_vec(shape: ShapeVec) -> Result<Self::Shape>
Convert a dynamic shape vector into this rank’s shape representation. Read more
Source§fn shape_into_vec(shape: Self::Shape) -> ShapeVec
fn shape_into_vec(shape: Self::Shape) -> ShapeVec
Convert this rank’s shape representation into a dynamic shape vector. Read more
impl<const N: usize> Copy for Rank<N>
impl<const N: usize> Eq for Rank<N>
impl<const N: usize> StructuralPartialEq for Rank<N>
Auto Trait Implementations§
impl<const N: usize> Freeze for Rank<N>
impl<const N: usize> RefUnwindSafe for Rank<N>
impl<const N: usize> Send for Rank<N>
impl<const N: usize> Sync for Rank<N>
impl<const N: usize> Unpin for Rank<N>
impl<const N: usize> UnsafeUnpin for Rank<N>
impl<const N: usize> UnwindSafe for Rank<N>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more