[][src]Struct alacritty::index::Column

pub struct Column(pub usize);

A column

Newtype to avoid passing values incorrectly

Trait Implementations

impl Default for Column[src]

impl Clone for Column[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Ord for Column[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl From<usize> for Column[src]

impl Eq for Column[src]

impl Copy for Column[src]

impl PartialOrd<Column> for Column[src]

impl PartialEq<Column> for Column[src]

impl Add<Column> for Column[src]

type Output = Column

The resulting type after applying the + operator.

impl<'a> Add<Column> for &'a Column[src]

type Output = <Column as Add<Column>>::Output

The resulting type after applying the + operator.

impl<'a> Add<&'a Column> for Column[src]

type Output = <Column as Add<Column>>::Output

The resulting type after applying the + operator.

impl<'a, 'b> Add<&'a Column> for &'b Column[src]

type Output = <Column as Add<Column>>::Output

The resulting type after applying the + operator.

impl Add<usize> for Column[src]

type Output = Column

The resulting type after applying the + operator.

impl Sub<Column> for Column[src]

type Output = Column

The resulting type after applying the - operator.

impl<'a> Sub<Column> for &'a Column[src]

type Output = Column

The resulting type after applying the - operator.

impl<'a> Sub<&'a Column> for Column[src]

type Output = Column

The resulting type after applying the - operator.

impl<'a, 'b> Sub<&'a Column> for &'b Column[src]

type Output = Column

The resulting type after applying the - operator.

impl Sub<usize> for Column[src]

type Output = Column

The resulting type after applying the - operator.

impl AddAssign<Column> for Column[src]

impl AddAssign<usize> for Column[src]

impl SubAssign<Column> for Column[src]

impl SubAssign<usize> for Column[src]

impl Deref for Column[src]

type Target = usize

The resulting type after dereferencing.

impl<T> Index<Column> for Row<T>[src]

type Output = T

The returned type after indexing.

impl<T> IndexMut<Column> for Row<T>[src]

impl Display for Column[src]

impl Debug for Column[src]

impl Serialize for Column[src]

impl<'de> Deserialize<'de> for Column[src]

Auto Trait Implementations

impl Send for Column

impl Sync for Column

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> SetParameter for T[src]

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 
[src]

Sets value as a parameter of self.

impl<T> Erased for T[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]