Enum ink_analyzer_ir::ast::GenericParam
source · pub enum GenericParam {
ConstParam(ConstParam),
LifetimeParam(LifetimeParam),
TypeParam(TypeParam),
}Variants§
Trait Implementations§
source§impl AstNode for GenericParam
impl AstNode for GenericParam
fn can_cast(kind: SyntaxKind) -> bool
fn cast(syntax: SyntaxNode<RustLanguage>) -> Option<GenericParam>
fn syntax(&self) -> &SyntaxNode<RustLanguage>
fn clone_for_update(&self) -> Selfwhere
Self: Sized,
fn clone_subtree(&self) -> Selfwhere
Self: Sized,
source§impl Clone for GenericParam
impl Clone for GenericParam
source§fn clone(&self) -> GenericParam
fn clone(&self) -> GenericParam
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 GenericParam
impl Debug for GenericParam
source§impl Display for GenericParam
impl Display for GenericParam
source§impl From<ConstParam> for GenericParam
impl From<ConstParam> for GenericParam
source§fn from(node: ConstParam) -> GenericParam
fn from(node: ConstParam) -> GenericParam
Converts to this type from the input type.
source§impl From<LifetimeParam> for GenericParam
impl From<LifetimeParam> for GenericParam
source§fn from(node: LifetimeParam) -> GenericParam
fn from(node: LifetimeParam) -> GenericParam
Converts to this type from the input type.
source§impl From<TypeParam> for GenericParam
impl From<TypeParam> for GenericParam
source§fn from(node: TypeParam) -> GenericParam
fn from(node: TypeParam) -> GenericParam
Converts to this type from the input type.
source§impl HasAttrs for GenericParam
impl HasAttrs for GenericParam
source§impl Hash for GenericParam
impl Hash for GenericParam
source§impl PartialEq for GenericParam
impl PartialEq for GenericParam
source§fn eq(&self, other: &GenericParam) -> bool
fn eq(&self, other: &GenericParam) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for GenericParam
impl StructuralEq for GenericParam
impl StructuralPartialEq for GenericParam
Auto Trait Implementations§
impl !RefUnwindSafe for GenericParam
impl !Send for GenericParam
impl !Sync for GenericParam
impl Unpin for GenericParam
impl !UnwindSafe for GenericParam
Blanket Implementations§
source§impl<N> AstNodeEdit for N
impl<N> AstNodeEdit for N
fn indent_level(&self) -> IndentLevel
fn indent(&self, level: IndentLevel) -> Self
fn dedent(&self, level: IndentLevel) -> Self
fn reset_indent(&self) -> Self
source§impl<T> AttrsOwnerEdit for Twhere
T: HasAttrs,
impl<T> AttrsOwnerEdit for Twhere
T: HasAttrs,
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.