pub struct BytePos(pub u32);
Expand description
A byte offset. Keep this small (currently 32-bits), as AST contains a lot of them.
§Reserved
-
0 is reserved for dummy spans. It means
BytePos(0)
means theBytePos
is synthesized by the compiler. -
Values larger than
u32::MAX - 2^16
are reserved for the comments.
u32::MAX
is special value used to generate source map entries.
Tuple Fields§
§0: u32
Implementations§
source§impl BytePos
impl BytePos
sourcepub const SYNTHESIZED: Self = _
pub const SYNTHESIZED: Self = _
Synthesized, but should be stored in a source map.
pub const fn is_reserved_for_comments(self) -> bool
Trait Implementations§
source§impl Add<BytePos> for NonNarrowChar
impl Add<BytePos> for NonNarrowChar
source§impl<'de> Deserialize<'de> for BytePos
impl<'de> Deserialize<'de> for BytePos
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl EqIgnoreSpan for BytePos
impl EqIgnoreSpan for BytePos
fn eq_ignore_span(&self, other: &Self) -> bool
source§impl Ord for BytePos
impl Ord for BytePos
source§impl PartialOrd for BytePos
impl PartialOrd for BytePos
source§impl Sub<BytePos> for NonNarrowChar
impl Sub<BytePos> for NonNarrowChar
impl Copy for BytePos
impl Eq for BytePos
impl StructuralPartialEq for BytePos
Auto Trait Implementations§
impl Freeze for BytePos
impl RefUnwindSafe for BytePos
impl Send for BytePos
impl Sync for BytePos
impl Unpin for BytePos
impl UnwindSafe for BytePos
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
§impl<T> CallHasher for T
impl<T> CallHasher for T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more