pub struct StarPipe(_, 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§
§1: DelimImplementations§
Trait Implementations§
Source§impl Ord for StarPipe
impl Ord for StarPipe
Source§impl PartialOrd for StarPipe
impl PartialOrd for StarPipe
Source§impl SemanticEq for StarPipe
impl SemanticEq for StarPipe
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<'a> ToCursors for StarPipe
impl<'a> ToCursors for StarPipe
fn to_cursors(&self, s: &mut impl CursorSink)
impl Copy for StarPipe
impl Eq for StarPipe
impl StructuralPartialEq for StarPipe
Auto Trait Implementations§
impl Freeze for StarPipe
impl RefUnwindSafe for StarPipe
impl Send for StarPipe
impl Sync for StarPipe
impl Unpin for StarPipe
impl UnwindSafe for StarPipe
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