pub struct Span {
pub start: usize,
pub end: usize,
}Expand description
A half-open byte range [start, end) into the source.
Fields§
§start: usize§end: usizeImplementations§
Source§impl Span
impl Span
pub const fn new(start: usize, end: usize) -> Span
Sourcepub const fn synthetic() -> Span
pub const fn synthetic() -> Span
A span for nodes produced by macro expansion that have no direct
source origin. start == end == usize::MAX is the sentinel.
pub const fn is_synthetic(&self) -> bool
Trait Implementations§
impl Copy for Span
impl Eq for Span
impl StructuralPartialEq for Span
Auto Trait Implementations§
impl Freeze for Span
impl RefUnwindSafe for Span
impl Send for Span
impl Sync for Span
impl Unpin for Span
impl UnsafeUnpin for Span
impl UnwindSafe for Span
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> 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.