pub struct Diff<'a> {
pub x: u16,
pub y: u16,
pub cells: Vec<&'a Cell>,
}Expand description
A diff operation representing changes between two buffers.
Fields§
§x: u16X coordinate
y: u16Y coordinate
cells: Vec<&'a Cell>Cells that changed at this position
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Diff<'a>
impl<'a> RefUnwindSafe for Diff<'a>
impl<'a> Send for Diff<'a>
impl<'a> Sync for Diff<'a>
impl<'a> Unpin for Diff<'a>
impl<'a> UnwindSafe for Diff<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more