Struct syn::PathSegment
source · [−]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 only if Syn is built with the "derive"
or "full"
feature.
Fields
ident: Ident
arguments: PathArguments
Trait Implementations
sourceimpl<T> From<T> for PathSegment where
T: Into<Ident>,
impl<T> From<T> for PathSegment where
T: Into<Ident>,
sourceimpl Parse for PathSegment
impl Parse for PathSegment
fn parse(input: ParseStream<'_>) -> Result<Self>
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
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