pub struct Span<P> {
pub start: P,
pub end: P,
}
Fields
start: P
end: P
Implementations
Trait Implementations
sourceimpl<P: Ord> Ord for Span<P>
impl<P: Ord> Ord for Span<P>
sourceimpl<P: PartialOrd> PartialOrd<Span<P>> for Span<P>
impl<P: PartialOrd> PartialOrd<Span<P>> for Span<P>
sourcefn partial_cmp(&self, other: &Span<P>) -> Option<Ordering>
fn partial_cmp(&self, other: &Span<P>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl<P: Copy> Copy for Span<P>
impl<P: Eq> Eq for Span<P>
impl<P> StructuralEq for Span<P>
impl<P> StructuralPartialEq for Span<P>
Auto Trait Implementations
impl<P> RefUnwindSafe for Span<P> where
P: RefUnwindSafe,
impl<P> Send for Span<P> where
P: Send,
impl<P> Sync for Span<P> where
P: Sync,
impl<P> Unpin for Span<P> where
P: Unpin,
impl<P> UnwindSafe for Span<P> where
P: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more