pub struct TailGlyph {
pub col: u32,
pub cell: u32,
pub ch: char,
}Expand description
One visible glyph of a collapsed block’s inline closing tail, resolved to the display cell it occupies on the header row.
Fields§
§col: u32Byte column on the fold’s last buffer row.
cell: u32Display cell on the header’s display row.
ch: charThe character itself.
Trait Implementations§
impl Copy for TailGlyph
impl StructuralPartialEq for TailGlyph
Auto Trait Implementations§
impl Freeze for TailGlyph
impl RefUnwindSafe for TailGlyph
impl Send for TailGlyph
impl Sync for TailGlyph
impl Unpin for TailGlyph
impl UnsafeUnpin for TailGlyph
impl UnwindSafe for TailGlyph
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