pub struct At(/* private fields */);Expand description
Represents a token with Kind::Delim that has the char @. Use T![@] to
refer to this. Not to be conused with T![AtKeyword] which represents a token with
Kind::AtKeyword.
Trait Implementations§
Source§impl Ord for At
impl Ord for At
Source§impl PartialOrd for At
impl PartialOrd for At
Source§impl SemanticEq for At
impl SemanticEq for At
Source§fn semantic_eq(&self, other: &Self) -> bool
fn semantic_eq(&self, other: &Self) -> bool
Returns
true if self and other are semantically equal.Source§impl ToCursors for At
impl ToCursors for At
fn to_cursors(&self, s: &mut impl CursorSink)
impl Copy for At
impl Eq for At
impl StructuralPartialEq for At
Auto Trait Implementations§
impl Freeze for At
impl RefUnwindSafe for At
impl Send for At
impl Sync for At
impl Unpin for At
impl UnsafeUnpin for At
impl UnwindSafe for At
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