Enum edlang_ast::PathSegment
source · pub enum PathSegment {
Field(Ident),
Index {
value: Expression,
span: Span,
},
}
Variants§
Trait Implementations§
source§impl Clone for PathSegment
impl Clone for PathSegment
source§fn clone(&self) -> PathSegment
fn clone(&self) -> PathSegment
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 PathSegment
impl Debug for PathSegment
source§impl Hash for PathSegment
impl Hash for PathSegment
source§impl Ord for PathSegment
impl Ord for PathSegment
source§fn cmp(&self, other: &PathSegment) -> Ordering
fn cmp(&self, other: &PathSegment) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for PathSegment
impl PartialEq for PathSegment
source§fn eq(&self, other: &PathSegment) -> bool
fn eq(&self, other: &PathSegment) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for PathSegment
impl PartialOrd for PathSegment
source§fn partial_cmp(&self, other: &PathSegment) -> Option<Ordering>
fn partial_cmp(&self, other: &PathSegment) -> Option<Ordering>
1.0.0 · source§fn 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 moreimpl Eq for PathSegment
impl StructuralEq for PathSegment
impl StructuralPartialEq for PathSegment
Auto Trait Implementations§
impl RefUnwindSafe for PathSegment
impl Send for PathSegment
impl Sync for PathSegment
impl Unpin for PathSegment
impl UnwindSafe for PathSegment
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