[][src]Struct alacritty_terminal::index::Line

pub struct Line(pub usize);

A line.

Newtype to avoid passing values incorrectly.

Trait Implementations

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

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

The resulting type after applying the + operator.

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

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

The resulting type after applying the + operator.

impl Add<Line> for Line[src]

type Output = Line

The resulting type after applying the + operator.

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

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

The resulting type after applying the + operator.

impl Add<usize> for Line[src]

type Output = Line

The resulting type after applying the + operator.

impl AddAssign<Line> for Line[src]

impl AddAssign<usize> for Line[src]

impl Clone for Line[src]

impl Copy for Line[src]

impl Debug for Line[src]

impl Default for Line[src]

impl Deref for Line[src]

type Target = usize

The resulting type after dereferencing.

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

impl Display for Line[src]

impl Eq for Line[src]

impl From<usize> for Line[src]

impl<T> Index<Line> for Grid<T>[src]

Index active region by line.

type Output = Row<T>

The returned type after indexing.

impl<T> IndexMut<Line> for Grid<T>[src]

impl Ord for Line[src]

impl PartialEq<Line> for Line[src]

impl PartialOrd<Line> for Line[src]

impl Serialize for Line[src]

impl StructuralEq for Line[src]

impl StructuralPartialEq for Line[src]

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

type Output = Line

The resulting type after applying the - operator.

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

type Output = Line

The resulting type after applying the - operator.

impl Sub<Line> for Line[src]

type Output = Line

The resulting type after applying the - operator.

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

type Output = Line

The resulting type after applying the - operator.

impl Sub<usize> for Line[src]

type Output = Line

The resulting type after applying the - operator.

impl SubAssign<Line> for Line[src]

impl SubAssign<usize> for Line[src]

Auto Trait Implementations

impl RefUnwindSafe for Line

impl Send for Line

impl Sync for Line

impl Unpin for Line

impl UnwindSafe for Line

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.