pub trait TypeParamsOwner<'a>: AstNode<'a> {
    fn type_param_list(self) -> Option<TypeParamList<'a>> { ... }
    fn where_clause(self) -> Option<WhereClause<'a>> { ... }
}

Provided Methods

Implementors