[][src]Struct gridly::vector::Rows

#[repr(transparent)]
pub struct Rows(pub isize);

Trait Implementations

impl Component for Rows[src]

type Converse = Columns

The converse component (Rows to Columns or vice versa)

type Point = Row

The assoicated location component type (Row or Column)

impl VectorLike for Rows[src]

impl Eq for Rows[src]

impl Default for Rows[src]

impl Clone for Rows[src]

impl PartialOrd<Rows> for Rows[src]

impl PartialOrd<isize> for Rows[src]

impl PartialEq<Rows> for Rows[src]

impl PartialEq<isize> for Rows[src]

impl Ord for Rows[src]

impl From<isize> for Rows[src]

impl Copy for Rows[src]

impl Hash for Rows[src]

impl Add<Rows> for Row[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<Columns> for Rows[src]

Adding a component to its converse (ie, Rows to Columns) creates a Vector

type Output = Vector

The resulting type after applying the + operator.

impl<T: Into<Rows>> Add<T> for Rows[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<Rows> for Columns[src]

Adding a component to its converse (ie, Rows to Columns) creates a Vector

type Output = Vector

The resulting type after applying the + operator.

impl Sub<Rows> for Row[src]

type Output = Self

The resulting type after applying the - operator.

impl<T: Into<Rows>> Sub<T> for Rows[src]

type Output = Self

The resulting type after applying the - operator.

impl<T> Mul<T> for Rows where
    isize: Mul<T, Output = isize>, 
[src]

type Output = Self

The resulting type after applying the * operator.

impl Neg for Rows[src]

type Output = Self

The resulting type after applying the - operator.

impl AddAssign<Rows> for Row[src]

impl<T: Into<Rows>> AddAssign<T> for Rows[src]

impl SubAssign<Rows> for Row[src]

impl<T: Into<Rows>> SubAssign<T> for Rows[src]

impl<T> MulAssign<T> for Rows where
    isize: MulAssign<T>, 
[src]

impl Debug for Rows[src]

Auto Trait Implementations

impl Send for Rows

impl Unpin for Rows

impl Sync for Rows

impl UnwindSafe for Rows

impl RefUnwindSafe for Rows

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]