pub struct Columns {
pub line: usize,
pub wrapped: usize,
pub len: usize,
}Expand description
Information about the horizontal place of a TwoPoints
Fields§
§line: usizeThe distance from the last \n character (or start).
wrapped: usizeThe distance from the leftmost edge of the area.
len: usizeHow much horizontal space the character in this position is occupying.
Auto Trait Implementations§
impl Freeze for Columns
impl RefUnwindSafe for Columns
impl Send for Columns
impl Sync for Columns
impl Unpin for Columns
impl UnsafeUnpin for Columns
impl UnwindSafe for Columns
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