[][src]Struct alacritty_terminal::index::Column

pub struct Column(pub usize);

A column.

Newtype to avoid passing values incorrectly.

Trait Implementations

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<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 Add<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 Clone for Column[src]

impl Copy for Column[src]

impl Debug for Column[src]

impl Default for Column[src]

impl Deref for Column[src]

type Target = usize

The resulting type after dereferencing.

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

impl Display for Column[src]

impl Eq for Column[src]

impl From<usize> for Column[src]

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 Ord for Column[src]

impl PartialEq<Column> for Column[src]

impl PartialOrd<Column> for Column[src]

impl Serialize for Column[src]

impl StructuralEq for Column[src]

impl StructuralPartialEq for Column[src]

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<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 Sub<usize> for Column[src]

type Output = Column

The resulting type after applying the - operator.

impl SubAssign<Column> for Column[src]

impl SubAssign<usize> for Column[src]

Auto Trait Implementations

impl RefUnwindSafe for Column

impl Send for Column

impl Sync for Column

impl Unpin for Column

impl UnwindSafe for Column

Blanket Implementations

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.