Skip to main content

MaybePos

Struct MaybePos 

pub struct MaybePos {
    pub line: SentinelOption<u32>,
    pub column: SentinelOption<u32>,
    pub offset: SentinelOption<u32>,
}
Expand description

A Pos whose fields may individually be unknown.

Backed by SentinelOption, so this is 12 bytes — the same as Pos: nullability is free because u32::MAX is reserved rather than a tag being carried.

For ENGINE-produced positions that reservation costs nothing — the lexer caps them far below the ceiling (LexError::InputTooLarge), the same assumption crate::Token already rests on. It is NOT free for positions that arrive from host code: a binding that lets user callbacks supply meta or token positions can be handed u32::MAX, which reads back as unknown. Such a boundary must convert with the total SentinelOption::new, never From<Option<u32>> (which routes through the debug-asserting SentinelOption::some).

Fields§

§line: SentinelOption<u32>§column: SentinelOption<u32>§offset: SentinelOption<u32>

Implementations§

§

impl MaybePos

pub const NONE: MaybePos

The all-unknown point.

pub fn known(p: Pos) -> MaybePos

Every field known.

pub fn resolve(self) -> Option<Pos>

The resolved point, or None if ANY field is unknown — the check child_span used to spell out field by field.

Trait Implementations§

§

impl Clone for MaybePos

§

fn clone(&self) -> MaybePos

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Copy for MaybePos

§

impl Debug for MaybePos

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
§

impl Default for MaybePos

§

fn default() -> MaybePos

Returns the “default value” for a type. Read more
§

impl Eq for MaybePos

§

impl Hash for MaybePos

§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl PartialEq for MaybePos

§

fn eq(&self, other: &MaybePos) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
§

impl StructuralPartialEq for MaybePos

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.