pub struct MultiByteChar {
pub pos: BytePos,
pub bytes: u8,
}
Expand description
Identifies an offset of a multi-byte character in a SourceFile
Fields§
§pos: BytePos
The absolute offset of the character in the SourceMap
bytes: u8
The number of bytes, >=2
Implementations§
source§impl MultiByteChar
impl MultiByteChar
sourcepub fn byte_to_char_diff(&self) -> u8
pub fn byte_to_char_diff(&self) -> u8
Computes the extra number of UTF-8 bytes necessary to encode a code point, compared to UTF-16 encoding.
1, 2, and 3 UTF-8 bytes encode into 1 UTF-16 char, but 4 UTF-8 bytes encode into 2.
Trait Implementations§
source§impl Clone for MultiByteChar
impl Clone for MultiByteChar
source§fn clone(&self) -> MultiByteChar
fn clone(&self) -> MultiByteChar
Returns a copy 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 MultiByteChar
impl Debug for MultiByteChar
source§impl PartialEq for MultiByteChar
impl PartialEq for MultiByteChar
impl Copy for MultiByteChar
impl Eq for MultiByteChar
impl StructuralPartialEq for MultiByteChar
Auto Trait Implementations§
impl Freeze for MultiByteChar
impl RefUnwindSafe for MultiByteChar
impl Send for MultiByteChar
impl Sync for MultiByteChar
impl Unpin for MultiByteChar
impl UnwindSafe for MultiByteChar
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§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