Enum syntax_pos::NonNarrowChar
[−]
[src]
pub enum NonNarrowChar {
ZeroWidth(BytePos),
Wide(BytePos),
Tab(BytePos),
}Identifies an offset of a non-narrow character in a FileMap
Variants
ZeroWidth(BytePos)Represents a zero-width character
Wide(BytePos)Represents a wide (fullwidth) character
Tab(BytePos)Represents a tab character, represented visually with a width of 4 characters
Methods
impl NonNarrowChar[src]
pub fn pos(&self) -> BytePos[src]
Returns the absolute offset of the character in the CodeMap
pub fn width(&self) -> usize[src]
Returns the width of the character, 0 (zero-width) or 2 (wide)
Trait Implementations
impl Copy for NonNarrowChar[src]
impl Clone for NonNarrowChar[src]
fn clone(&self) -> NonNarrowChar[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Encodable for NonNarrowChar[src]
impl Decodable for NonNarrowChar[src]
impl Eq for NonNarrowChar[src]
impl PartialEq for NonNarrowChar[src]
fn eq(&self, __arg_0: &NonNarrowChar) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &NonNarrowChar) -> bool[src]
This method tests for !=.
impl Add<BytePos> for NonNarrowChar[src]
type Output = Self
The resulting type after applying the + operator.
fn add(self, rhs: BytePos) -> Self[src]
Performs the + operation.