pub struct PipeEqual(pub Delim, pub Delim);
Expand description
Represents a two consecutive tokens with Kind::Delim that cannot be separated by any
other token. The first token has the char |
while the second has the char =
, representing |=
. Use
T![|=] to refer to this.
Tuple Fields§
§0: Delim
§1: Delim
Implementations§
Trait Implementations§
Source§impl Ord for PipeEqual
impl Ord for PipeEqual
Source§impl PartialOrd for PipeEqual
impl PartialOrd for PipeEqual
Source§impl<'a> ToCursors for PipeEqual
impl<'a> ToCursors for PipeEqual
fn to_cursors(&self, s: &mut impl CursorSink)
impl Copy for PipeEqual
impl Eq for PipeEqual
impl StructuralPartialEq for PipeEqual
Auto Trait Implementations§
impl Freeze for PipeEqual
impl RefUnwindSafe for PipeEqual
impl Send for PipeEqual
impl Sync for PipeEqual
impl Unpin for PipeEqual
impl UnwindSafe for PipeEqual
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