Struct ra_ap_syntax::ast::ContinueExpr  [−][src]
pub struct ContinueExpr { /* fields omitted */ }Implementations
impl ContinueExpr[src]
impl ContinueExpr[src]pub fn continue_token(&self) -> Option<SyntaxToken>[src]
pub fn lifetime(&self) -> Option<Lifetime>[src]
Trait Implementations
impl AstNode for ContinueExpr[src]
impl AstNode for ContinueExpr[src]fn can_cast(kind: SyntaxKind) -> bool[src]
fn cast(syntax: SyntaxNode) -> Option<Self>[src]
fn syntax(&self) -> &SyntaxNode[src]
fn clone_for_update(&self) -> Self where
    Self: Sized, [src]
Self: Sized,
fn clone_subtree(&self) -> Self where
    Self: Sized, [src]
Self: Sized,
impl AttrsOwner for ContinueExpr[src]
impl AttrsOwner for ContinueExpr[src]fn attrs(&self) -> AstChildren<Attr>ⓘNotable traits for AstChildren<N>
impl<N: AstNode> Iterator for AstChildren<N>    type Item = N;[src]
Notable traits for AstChildren<N>
impl<N: AstNode> Iterator for AstChildren<N>    type Item = N;fn has_atom_attr(&self, atom: &str) -> bool[src]
impl Clone for ContinueExpr[src]
impl Clone for ContinueExpr[src]fn clone(&self) -> ContinueExpr[src]
fn clone(&self) -> ContinueExpr[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl Debug for ContinueExpr[src]
impl Debug for ContinueExpr[src]impl Display for ContinueExpr[src]
impl Display for ContinueExpr[src]impl From<ContinueExpr> for Expr[src]
impl From<ContinueExpr> for Expr[src]fn from(node: ContinueExpr) -> Expr[src]
fn from(node: ContinueExpr) -> Expr[src]Performs the conversion.
impl Hash for ContinueExpr[src]
impl Hash for ContinueExpr[src]impl PartialEq<ContinueExpr> for ContinueExpr[src]
impl PartialEq<ContinueExpr> for ContinueExpr[src]fn eq(&self, other: &ContinueExpr) -> bool[src]
fn eq(&self, other: &ContinueExpr) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &ContinueExpr) -> bool[src]
fn ne(&self, other: &ContinueExpr) -> bool[src]This method tests for !=.
impl Eq for ContinueExpr[src]
impl StructuralEq for ContinueExpr[src]
impl StructuralPartialEq for ContinueExpr[src]
Auto Trait Implementations
impl !RefUnwindSafe for ContinueExpr
impl !Send for ContinueExpr
impl !Sync for ContinueExpr
impl Unpin for ContinueExpr
impl !UnwindSafe for ContinueExpr
Blanket Implementations
impl<N> AstNodeEdit for N where
    N: AstNode + Clone, [src]
impl<N> AstNodeEdit for N where
    N: AstNode + Clone, [src]#[must_use]fn replace_children(
    &self, 
    to_replace: RangeInclusive<SyntaxElement>, 
    to_insert: impl IntoIterator<Item = SyntaxElement>
) -> Self[src]
#[must_use]
fn replace_children(&self,
to_replace: RangeInclusive<SyntaxElement>,
to_insert: impl IntoIterator<Item = SyntaxElement>
) -> Self
fn indent_level(&self) -> IndentLevel[src]
#[must_use]fn indent(&self, level: IndentLevel) -> Self[src]
#[must_use]
fn indent(&self, level: IndentLevel) -> Self#[must_use]fn dedent(&self, level: IndentLevel) -> Self[src]
#[must_use]
fn dedent(&self, level: IndentLevel) -> Self#[must_use]fn reset_indent(&self) -> Self[src]
#[must_use]
fn reset_indent(&self) -> Selfimpl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized, [src]
impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized, [src]pub fn equivalent(&self, key: &K) -> bool[src]
pub fn equivalent(&self, key: &K) -> bool[src]Compare self to key and return true if they are equal.
impl<T> ToOwned for T where
    T: Clone, [src]
impl<T> ToOwned for T where
    T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more