pub enum SourceEvent {
Char(char),
Breaker(Breaker),
}Variants§
Trait Implementations§
Source§impl Clone for SourceEvent
impl Clone for SourceEvent
Source§fn clone(&self) -> SourceEvent
fn clone(&self) -> SourceEvent
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 moreimpl Copy for SourceEvent
Source§impl Debug for SourceEvent
impl Debug for SourceEvent
impl Eq for SourceEvent
Source§impl<D> From<SourceEvent> for ParserEvent<D>
impl<D> From<SourceEvent> for ParserEvent<D>
Source§fn from(se: SourceEvent) -> ParserEvent<D>
fn from(se: SourceEvent) -> ParserEvent<D>
Converts to this type from the input type.
Source§impl PartialEq for SourceEvent
impl PartialEq for SourceEvent
impl StructuralPartialEq for SourceEvent
Auto Trait Implementations§
impl Freeze for SourceEvent
impl RefUnwindSafe for SourceEvent
impl Send for SourceEvent
impl Sync for SourceEvent
impl Unpin for SourceEvent
impl UnsafeUnpin for SourceEvent
impl UnwindSafe for SourceEvent
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