[][src]Enum rustc_ap_syntax_pos::NonNarrowChar

pub enum NonNarrowChar {
    ZeroWidth(BytePos),
    Wide(BytePos),
    Tab(BytePos),
}

Identifies an offset of a non-narrow character in a SourceFile.

Variants

ZeroWidth(BytePos)

Represents a zero-width character.

Wide(BytePos)

Represents a wide (full-width) 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 SourceMap.

pub fn width(&self) -> usize[src]

Returns the width of the character, 0 (zero-width) or 2 (wide).

Trait Implementations

impl Add<BytePos> for NonNarrowChar[src]

type Output = Self

The resulting type after applying the + operator.

impl Clone for NonNarrowChar[src]

impl Copy for NonNarrowChar[src]

impl Debug for NonNarrowChar[src]

impl Decodable for NonNarrowChar[src]

impl Encodable for NonNarrowChar[src]

impl Eq for NonNarrowChar[src]

impl PartialEq<NonNarrowChar> for NonNarrowChar[src]

impl StructuralEq for NonNarrowChar[src]

impl StructuralPartialEq for NonNarrowChar[src]

impl Sub<BytePos> for NonNarrowChar[src]

type Output = Self

The resulting type after applying the - operator.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Decodable for T where
    T: UseSpecializedDecodable
[src]

impl<T> Encodable for T where
    T: UseSpecializedEncodable + ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<E> SpecializationError for E[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.