Struct ra_ap_syntax::ast::Fn
source · [−]pub struct Fn { /* private fields */ }
Implementations
sourceimpl Fn
impl Fn
pub fn default_token(&self) -> Option<SyntaxToken>
pub fn const_token(&self) -> Option<SyntaxToken>
pub fn async_token(&self) -> Option<SyntaxToken>
pub fn unsafe_token(&self) -> Option<SyntaxToken>
pub fn abi(&self) -> Option<Abi>
pub fn fn_token(&self) -> Option<SyntaxToken>
pub fn param_list(&self) -> Option<ParamList>
pub fn ret_type(&self) -> Option<RetType>
pub fn body(&self) -> Option<BlockExpr>
pub fn semicolon_token(&self) -> Option<SyntaxToken>
sourceimpl Fn
impl Fn
pub fn get_or_create_body(&self) -> BlockExpr
Trait Implementations
sourceimpl AstNode for Fn
impl AstNode for Fn
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,
sourceimpl From<Fn> for ExternItem
impl From<Fn> for ExternItem
sourcefn from(node: Fn) -> ExternItem
fn from(node: Fn) -> ExternItem
Converts to this type from the input type.
sourceimpl GenericParamsOwnerEdit for Fn
impl GenericParamsOwnerEdit for Fn
fn get_or_create_generic_param_list(&self) -> GenericParamList
fn get_or_create_where_clause(&self) -> WhereClause
sourceimpl HasAttrs for Fn
impl HasAttrs for Fn
fn attrs(&self) -> AstChildren<Attr>ⓘNotable traits for AstChildren<N>impl<N: AstNode> Iterator for AstChildren<N> type Item = N;
fn has_atom_attr(&self, atom: &str) -> bool
sourceimpl HasDocComments for Fn
impl HasDocComments for Fn
fn doc_comments(&self) -> DocCommentIterⓘNotable traits for DocCommentIterimpl Iterator for DocCommentIter type Item = Comment;
fn doc_comments_and_attrs(&self) -> AttrDocCommentIterⓘNotable traits for AttrDocCommentIterimpl Iterator for AttrDocCommentIter type Item = Either<Attr, Comment>;
sourceimpl HasGenericParams for Fn
impl HasGenericParams for Fn
fn generic_param_list(&self) -> Option<GenericParamList>
fn where_clause(&self) -> Option<WhereClause>
sourceimpl HasVisibility for Fn
impl HasVisibility for Fn
fn visibility(&self) -> Option<Visibility>
impl Eq for Fn
impl StructuralEq for Fn
impl StructuralPartialEq for Fn
Auto Trait Implementations
impl !RefUnwindSafe for Fn
impl !Send for Fn
impl !Sync for Fn
impl Unpin for Fn
impl !UnwindSafe for Fn
Blanket Implementations
sourceimpl<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
sourceimpl<T> AttrsOwnerEdit for Twhere
T: HasAttrs,
impl<T> AttrsOwnerEdit for Twhere
T: HasAttrs,
fn remove_attrs_and_docs(&self)
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<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,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.