[][src]Trait tract_core::dim::DimLike

pub trait DimLike: Copy + Clone + Default + PartialEq + From<usize> + One + Zero + Debug + Add<Self, Output = Self> + Add<usize, Output = Self> + Sub<Self, Output = Self> + Sub<usize, Output = Self> + Mul<usize, Output = Self> + Div<usize, Output = Self> + Send + Sync + 'static {
    fn to_integer(&self) -> TractResult<i64>;

    fn div_ceil(&self, other: usize) -> Self { ... }
}

Required Methods

Provided Methods

Implementations on Foreign Types

impl DimLike for usize
[src]

Implementors

impl DimLike for TDim
[src]