pub enum TypeParamBound {
Trait(TraitBound),
Lifetime(Lifetime),
}
Expand description
A trait or lifetime used as a bound on a type parameter.
This type is available if Syn is built with the "derive"
or "full"
feature.
Variants§
Trait(TraitBound)
Lifetime(Lifetime)
Trait Implementations§
Source§impl Clone for TypeParamBound
impl Clone for TypeParamBound
Source§fn clone(&self) -> TypeParamBound
fn clone(&self) -> TypeParamBound
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 TypeParamBound
impl Debug for TypeParamBound
Source§impl From<Lifetime> for TypeParamBound
impl From<Lifetime> for TypeParamBound
Source§fn from(e: Lifetime) -> TypeParamBound
fn from(e: Lifetime) -> TypeParamBound
Converts to this type from the input type.
Source§impl From<TraitBound> for TypeParamBound
impl From<TraitBound> for TypeParamBound
Source§fn from(e: TraitBound) -> TypeParamBound
fn from(e: TraitBound) -> TypeParamBound
Converts to this type from the input type.
Source§impl Hash for TypeParamBound
impl Hash for TypeParamBound
Source§impl PartialEq for TypeParamBound
impl PartialEq for TypeParamBound
Source§impl Synom for TypeParamBound
impl Synom for TypeParamBound
Source§impl ToTokens for TypeParamBound
impl ToTokens for TypeParamBound
impl Eq for TypeParamBound
impl StructuralPartialEq for TypeParamBound
Auto Trait Implementations§
impl Freeze for TypeParamBound
impl RefUnwindSafe for TypeParamBound
impl !Send for TypeParamBound
impl !Sync for TypeParamBound
impl Unpin for TypeParamBound
impl UnwindSafe for TypeParamBound
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.