[][src]Struct kul_core::text::chunk::premade::StrPos

pub struct StrPos<'s> {
    pub src: &'s str,
    pub byte_pos: usize,
    pub char_pos: usize,
}

A SourcePosition type for character or slice values from text sources that are entire str strings where we can know the original source and the relative position.

Fields

src: &'s str

Original entire source string that the value is in. Might equal the slice.

byte_pos: usize

Byte position of start of the value, relative to src.

char_pos: usize

Character position of start of the value, relative to the original source.

Trait Implementations

impl<'_> SourcePosition for StrPos<'_>[src]

impl<'s> Debug for StrPos<'s>[src]

impl<'s> PartialEq<StrPos<'s>> for StrPos<'s>[src]

impl<'s> Eq for StrPos<'s>[src]

impl<'s> Copy for StrPos<'s>[src]

impl<'s> Clone for StrPos<'s>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<'s> Send for StrPos<'s>

impl<'s> Sync for StrPos<'s>

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

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