[][src]Trait alacritty_terminal::grid::GridCell

pub trait GridCell {
    fn is_empty(&self) -> bool;
fn flags(&self) -> &Flags;
fn flags_mut(&mut self) -> &mut Flags;
fn fast_eq(&self, other: Self) -> bool; }

Required methods

fn is_empty(&self) -> bool

fn flags(&self) -> &Flags

fn flags_mut(&mut self) -> &mut Flags

fn fast_eq(&self, other: Self) -> bool

Fast equality approximation.

This is a faster alternative to PartialEq, but might report unequal cells as equal.

Loading content...

Implementors

impl GridCell for Cell[src]

Loading content...