pub enum PathArguments {
None,
AngleBracketed(AngleBracketedGenericArguments),
Parenthesized(ParenthesizedGenericArguments),
}Expand description
Variants§
None
AngleBracketed(AngleBracketedGenericArguments)
The <'a, T> in std::slice::iter<'a, T>.
Parenthesized(ParenthesizedGenericArguments)
The (A, B) -> C in Fn(A, B) -> C.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PathArguments
impl RefUnwindSafe for PathArguments
impl !Send for PathArguments
impl !Sync for PathArguments
impl Unpin for PathArguments
impl UnwindSafe for PathArguments
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