pub struct ParenSelect { /* private fields */ }
Implementations§
Source§impl ParenSelect
impl ParenSelect
pub fn select(&self) -> Option<Select>
pub fn l_paren_token(&self) -> Option<SyntaxToken>
pub fn r_paren_token(&self) -> Option<SyntaxToken>
Trait Implementations§
Source§impl AstNode for ParenSelect
impl AstNode for ParenSelect
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 ParenSelect
impl Clone for ParenSelect
Source§fn clone(&self) -> ParenSelect
fn clone(&self) -> ParenSelect
Returns a duplicate 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 ParenSelect
impl Debug for ParenSelect
Source§impl From<ParenSelect> for Stmt
impl From<ParenSelect> for Stmt
Source§fn from(node: ParenSelect) -> Stmt
fn from(node: ParenSelect) -> Stmt
Converts to this type from the input type.
Source§impl Hash for ParenSelect
impl Hash for ParenSelect
Source§impl PartialEq for ParenSelect
impl PartialEq for ParenSelect
impl Eq for ParenSelect
impl StructuralPartialEq for ParenSelect
Auto Trait Implementations§
impl Freeze for ParenSelect
impl !RefUnwindSafe for ParenSelect
impl !Send for ParenSelect
impl !Sync for ParenSelect
impl Unpin for ParenSelect
impl !UnwindSafe for ParenSelect
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