pub struct PathSegment {
pub ident: Ident,
pub arguments: PathArguments,
}
Expand description
A segment of a path together with any path arguments on that segment.
This type is available if Syn is built with the "derive"
or "full"
feature.
Fields§
§ident: Ident
§arguments: PathArguments
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<T> From<T> for PathSegment
impl<T> From<T> for PathSegment
Source§impl Hash for PathSegment
impl Hash for PathSegment
Source§impl PartialEq for PathSegment
impl PartialEq for PathSegment
Source§impl Synom for PathSegment
impl Synom for PathSegment
Source§impl ToTokens for PathSegment
impl ToTokens for PathSegment
impl Eq for PathSegment
impl StructuralPartialEq for PathSegment
Auto Trait Implementations§
impl Freeze for PathSegment
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Spanned for Twhere
T: ToTokens,
impl<T> Spanned for Twhere
T: ToTokens,
Source§fn span(&self) -> Span
fn span(&self) -> Span
Returns a
Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty.