pub enum VTOwnedEvent {
}Expand description
A union of all possible events that can be emitted by the parser, with owned data.
Variants§
Raw(Vec<u8>)
C0(u8)
Esc(Esc)
EscInvalid(EscInvalid)
Ss2(SS2)
Ss3(SS3)
Csi(CSIOwned)
DcsStart(DCSOwned)
DcsData(Vec<u8>)
DcsEnd(Vec<u8>)
DcsCancel
OscStart
OscData(Vec<u8>)
OscEnd
OscCancel
Implementations§
Trait Implementations§
Source§impl Clone for VTOwnedEvent
impl Clone for VTOwnedEvent
Source§fn clone(&self) -> VTOwnedEvent
fn clone(&self) -> VTOwnedEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VTOwnedEvent
impl Debug for VTOwnedEvent
Source§impl PartialEq for VTOwnedEvent
impl PartialEq for VTOwnedEvent
impl Eq for VTOwnedEvent
impl StructuralPartialEq for VTOwnedEvent
Auto Trait Implementations§
impl Freeze for VTOwnedEvent
impl RefUnwindSafe for VTOwnedEvent
impl Send for VTOwnedEvent
impl Sync for VTOwnedEvent
impl Unpin for VTOwnedEvent
impl UnwindSafe for VTOwnedEvent
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