pub struct WideLineCol {
pub line: u32,
pub col: u32,
}
Expand description
(line, column)
information in wide encodings.
See WideEncoding
for the kinds of wide encodings available.
Fields§
§line: u32
Zero-based.
col: u32
Zero-based.
Trait Implementations§
Source§impl Clone for WideLineCol
impl Clone for WideLineCol
Source§fn clone(&self) -> WideLineCol
fn clone(&self) -> WideLineCol
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WideLineCol
impl Debug for WideLineCol
Source§impl Hash for WideLineCol
impl Hash for WideLineCol
Source§impl PartialEq for WideLineCol
impl PartialEq for WideLineCol
impl Copy for WideLineCol
impl Eq for WideLineCol
impl StructuralPartialEq for WideLineCol
Auto Trait Implementations§
impl Freeze for WideLineCol
impl RefUnwindSafe for WideLineCol
impl Send for WideLineCol
impl Sync for WideLineCol
impl Unpin for WideLineCol
impl UnwindSafe for WideLineCol
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