[][src]Struct silkworm_sourcemap::Span

pub struct Span {
    pub base: u32,
    pub len: u32,
}

Fields

base: u32len: u32

Implementations

impl Span[src]

pub fn new(base: u32, len: u32) -> Self[src]

pub fn nil() -> Self[src]

Returns a Span { base: 0xFFFF_FFFF, len: 0 }. This is a special value that is reserved for invalid Spans.

pub fn is_nil(self) -> bool[src]

Returns true if self is the nil span.

pub fn union(self, rhs: Span) -> Span[src]

Returns the union between two spans.

Panics

If self or rhs is the nil span.

pub fn empty(self) -> Span[src]

Returns an empty span at self.base.

pub fn read(self, source: &str, span_base: u32) -> &str[src]

Returns the corresponding slice from source.

Panics

If the span is out=of-bounds for source.

Trait Implementations

impl Clone for Span[src]

impl Copy for Span[src]

impl Debug for Span[src]

impl Default for Span[src]

impl Eq for Span[src]

impl From<Span> for ErrorSpan[src]

impl Hash for Span[src]

impl PartialEq<Span> for Span[src]

impl StructuralEq for Span[src]

impl StructuralPartialEq for Span[src]

Auto Trait Implementations

impl RefUnwindSafe for Span

impl Send for Span

impl Sync for Span

impl Unpin for Span

impl UnwindSafe for Span

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.