Struct typst_syntax::ast::MathDelimited
source · pub struct MathDelimited<'a>(/* private fields */);
Expand description
Matched delimiters in math: [x + y]
.
Implementations§
Trait Implementations§
source§impl<'a> AstNode<'a> for MathDelimited<'a>
impl<'a> AstNode<'a> for MathDelimited<'a>
source§fn from_untyped(node: &'a SyntaxNode) -> Option<Self>
fn from_untyped(node: &'a SyntaxNode) -> Option<Self>
Convert a node into its typed variant.
source§fn to_untyped(self) -> &'a SyntaxNode
fn to_untyped(self) -> &'a SyntaxNode
A reference to the underlying syntax node.
source§impl<'a> Clone for MathDelimited<'a>
impl<'a> Clone for MathDelimited<'a>
source§fn clone(&self) -> MathDelimited<'a>
fn clone(&self) -> MathDelimited<'a>
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<'a> Debug for MathDelimited<'a>
impl<'a> Debug for MathDelimited<'a>
source§impl Default for MathDelimited<'_>
impl Default for MathDelimited<'_>
source§impl<'a> Hash for MathDelimited<'a>
impl<'a> Hash for MathDelimited<'a>
source§impl<'a> PartialEq for MathDelimited<'a>
impl<'a> PartialEq for MathDelimited<'a>
source§fn eq(&self, other: &MathDelimited<'a>) -> bool
fn eq(&self, other: &MathDelimited<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'a> Copy for MathDelimited<'a>
impl<'a> Eq for MathDelimited<'a>
impl<'a> StructuralPartialEq for MathDelimited<'a>
Auto Trait Implementations§
impl<'a> Freeze for MathDelimited<'a>
impl<'a> RefUnwindSafe for MathDelimited<'a>
impl<'a> Send for MathDelimited<'a>
impl<'a> Sync for MathDelimited<'a>
impl<'a> Unpin for MathDelimited<'a>
impl<'a> UnwindSafe for MathDelimited<'a>
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