Struct ra_ap_syntax::ast::GenericParamList
source · pub struct GenericParamList { /* private fields */ }
Implementations§
source§impl GenericParamList
impl GenericParamList
pub fn l_angle_token(&self) -> Option<SyntaxToken>
pub fn generic_params(&self) -> AstChildren<GenericParam> ⓘ
pub fn r_angle_token(&self) -> Option<SyntaxToken>
source§impl GenericParamList
impl GenericParamList
pub fn lifetime_params(&self) -> impl Iterator<Item = LifetimeParam>
pub fn type_or_const_params(&self) -> impl Iterator<Item = TypeOrConstParam>
source§impl GenericParamList
impl GenericParamList
pub fn add_generic_param(&self, generic_param: GenericParam)
sourcepub fn remove_generic_param(&self, generic_param: GenericParam)
pub fn remove_generic_param(&self, generic_param: GenericParam)
Removes the existing generic param
sourcepub fn to_generic_args(&self) -> GenericArgList
pub fn to_generic_args(&self) -> GenericArgList
Constructs a matching ast::GenericArgList
Trait Implementations§
source§impl AstNode for GenericParamList
impl AstNode for GenericParamList
fn can_cast(kind: SyntaxKind) -> bool
fn cast(syntax: SyntaxNode) -> Option<Self>
fn syntax(&self) -> &SyntaxNode
fn clone_for_update(&self) -> Selfwhere Self: Sized,
fn clone_subtree(&self) -> Selfwhere Self: Sized,
source§impl Clone for GenericParamList
impl Clone for GenericParamList
source§fn clone(&self) -> GenericParamList
fn clone(&self) -> GenericParamList
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 GenericParamList
impl Debug for GenericParamList
source§impl Display for GenericParamList
impl Display for GenericParamList
source§impl Hash for GenericParamList
impl Hash for GenericParamList
source§impl PartialEq for GenericParamList
impl PartialEq for GenericParamList
source§fn eq(&self, other: &GenericParamList) -> bool
fn eq(&self, other: &GenericParamList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for GenericParamList
impl StructuralEq for GenericParamList
impl StructuralPartialEq for GenericParamList
Auto Trait Implementations§
impl !RefUnwindSafe for GenericParamList
impl !Send for GenericParamList
impl !Sync for GenericParamList
impl Unpin for GenericParamList
impl !UnwindSafe for GenericParamList
Blanket Implementations§
source§impl<N> AstNodeEdit for Nwhere
N: AstNode + Clone,
impl<N> AstNodeEdit for Nwhere N: AstNode + Clone,
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> 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 Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§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 Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.