pub enum TypeParam<'tree> {
Invisible(Box<Invisible<'tree>>),
Parens(Box<Parens<'tree>>),
Variable(Box<Variable<'tree>>),
Wildcard(Box<Wildcard<'tree>>),
}Variants§
Invisible(Box<Invisible<'tree>>)
Parens(Box<Parens<'tree>>)
Variable(Box<Variable<'tree>>)
Wildcard(Box<Wildcard<'tree>>)
Trait Implementations§
impl<'tree> Eq for TypeParam<'tree>
impl<'tree> StructuralPartialEq for TypeParam<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for TypeParam<'tree>
impl<'tree> RefUnwindSafe for TypeParam<'tree>
impl<'tree> Send for TypeParam<'tree>
impl<'tree> Sync for TypeParam<'tree>
impl<'tree> Unpin for TypeParam<'tree>
impl<'tree> UnsafeUnpin for TypeParam<'tree>
impl<'tree> UnwindSafe for TypeParam<'tree>
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