pub struct GenericParamDef {
pub id: Spanned<GenericParamId>,
pub constraint: GenericConstraint,
pub default: Option<TypeExpr>,
}Expand description
A resolved generic-parameter definition.
Fields§
§id: Spanned<GenericParamId>§constraint: GenericConstraint§default: Option<TypeExpr>Trait Implementations§
Source§impl Clone for GenericParamDef
impl Clone for GenericParamDef
Source§fn clone(&self) -> GenericParamDef
fn clone(&self) -> GenericParamDef
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GenericParamDef
impl Debug for GenericParamDef
impl Eq for GenericParamDef
Source§impl PartialEq for GenericParamDef
impl PartialEq for GenericParamDef
Source§fn eq(&self, other: &GenericParamDef) -> bool
fn eq(&self, other: &GenericParamDef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GenericParamDef
Auto Trait Implementations§
impl Freeze for GenericParamDef
impl RefUnwindSafe for GenericParamDef
impl Send for GenericParamDef
impl Sync for GenericParamDef
impl Unpin for GenericParamDef
impl UnsafeUnpin for GenericParamDef
impl UnwindSafe for GenericParamDef
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.