pub struct BytePosition(pub ByteOffset);Expand description
A 0-indexed byte absolute position (i.e., relative to the start of a &str)
This type is small (u32 currently) to allow it to be included in ASTs and other data structures.
Tuple Fields§
§0: ByteOffsetTrait Implementations§
Source§impl Clone for BytePosition
impl Clone for BytePosition
Source§fn clone(&self) -> BytePosition
fn clone(&self) -> BytePosition
Returns a duplicate 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 BytePosition
impl Debug for BytePosition
Source§impl Display for BytePosition
impl Display for BytePosition
Source§impl From<ByteOffset> for BytePosition
impl From<ByteOffset> for BytePosition
Source§fn from(offset: ByteOffset) -> Self
fn from(offset: ByteOffset) -> Self
Converts to this type from the input type.
Source§impl From<usize> for BytePosition
impl From<usize> for BytePosition
Source§impl Hash for BytePosition
impl Hash for BytePosition
Source§impl Ord for BytePosition
impl Ord for BytePosition
Source§fn cmp(&self, other: &BytePosition) -> Ordering
fn cmp(&self, other: &BytePosition) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BytePosition
impl PartialEq for BytePosition
Source§impl PartialOrd for BytePosition
impl PartialOrd for BytePosition
impl Copy for BytePosition
impl Eq for BytePosition
impl StructuralPartialEq for BytePosition
Auto Trait Implementations§
impl Freeze for BytePosition
impl RefUnwindSafe for BytePosition
impl Send for BytePosition
impl Sync for BytePosition
impl Unpin for BytePosition
impl UnwindSafe for BytePosition
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.