Struct cairo_lang_syntax::node::ast::TerminalDot   
source · pub struct TerminalDot { /* private fields */ }Implementations§
source§impl TerminalDot
 
impl TerminalDot
pub fn leading_trivia(&self, db: &dyn SyntaxGroup) -> Trivia
pub fn token(&self, db: &dyn SyntaxGroup) -> TokenDot
pub fn trailing_trivia(&self, db: &dyn SyntaxGroup) -> Trivia
Trait Implementations§
source§impl Clone for TerminalDot
 
impl Clone for TerminalDot
source§fn clone(&self) -> TerminalDot
 
fn clone(&self) -> TerminalDot
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 TerminalDot
 
impl Debug for TerminalDot
source§impl Hash for TerminalDot
 
impl Hash for TerminalDot
source§impl PartialEq<TerminalDot> for TerminalDot
 
impl PartialEq<TerminalDot> for TerminalDot
source§fn eq(&self, other: &TerminalDot) -> bool
 
fn eq(&self, other: &TerminalDot) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Terminal for TerminalDot
 
impl Terminal for TerminalDot
const KIND: SyntaxKind = SyntaxKind::TerminalDot
type TokenType = TokenDot
fn new_green( db: &dyn SyntaxGroup, leading_trivia: TriviaGreen, token: <<TerminalDot as Terminal>::TokenType as TypedSyntaxNode>::Green, trailing_trivia: TriviaGreen ) -> Self::Green
source§fn text(&self, db: &dyn SyntaxGroup) -> SmolStr
 
fn text(&self, db: &dyn SyntaxGroup) -> SmolStr
Returns the text of the token of this terminal (excluding the trivia).
source§impl TypedSyntaxNode for TerminalDot
 
impl TypedSyntaxNode for TerminalDot
source§const OPTIONAL_KIND: Option<SyntaxKind> = _
 
const OPTIONAL_KIND: Option<SyntaxKind> = _
The relevant SyntaxKind. None for enums.
type StablePtr = TerminalDotPtr
type Green = TerminalDotGreen
fn missing(db: &dyn SyntaxGroup) -> Self::Green
fn from_syntax_node(db: &dyn SyntaxGroup, node: SyntaxNode) -> Self
fn from_ptr( db: &dyn SyntaxGroup, root: &SyntaxFile, ptr: Self::StablePtr ) -> Self
fn as_syntax_node(&self) -> SyntaxNode
fn stable_ptr(&self) -> Self::StablePtr
impl Eq for TerminalDot
impl StructuralEq for TerminalDot
impl StructuralPartialEq for TerminalDot
Auto Trait Implementations§
impl RefUnwindSafe for TerminalDot
impl Send for TerminalDot
impl Sync for TerminalDot
impl Unpin for TerminalDot
impl UnwindSafe for TerminalDot
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
source§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,
source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.