pub enum ChainCompletion {
None,
DotProbe {
marker: Ident,
},
}Expand description
Completion state for a parsed chain.
Variants§
None
The chain ended without a completion probe.
DotProbe
The chain ended at a completion marker after a dot.
Trait Implementations§
Source§impl Clone for ChainCompletion
impl Clone for ChainCompletion
Source§fn clone(&self) -> ChainCompletion
fn clone(&self) -> ChainCompletion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl !Send for ChainCompletion
impl !Sync for ChainCompletion
impl Freeze for ChainCompletion
impl RefUnwindSafe for ChainCompletion
impl Unpin for ChainCompletion
impl UnsafeUnpin for ChainCompletion
impl UnwindSafe for ChainCompletion
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