[−][src]Struct vtparse::CollectingVTActor
This is an implementation of VTActor that captures the events
into an internal vector.
It can be iterated via into_iter or have the internal
vector extracted via into_vec.
Methods
impl CollectingVTActor[src]
Trait Implementations
impl Default for CollectingVTActor[src]
fn default() -> CollectingVTActor[src]
impl IntoIterator for CollectingVTActor[src]
type Item = VTAction
The type of the elements being iterated over.
type IntoIter = IntoIter<VTAction>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter[src]
impl VTActor for CollectingVTActor[src]
fn print(&mut self, b: char)[src]
fn execute_c0_or_c1(&mut self, control: u8)[src]
fn dcs_hook(
&mut self,
params: &[i64],
intermediates: &[u8],
ignored_excess_intermediates: bool
)[src]
&mut self,
params: &[i64],
intermediates: &[u8],
ignored_excess_intermediates: bool
)
fn dcs_put(&mut self, byte: u8)[src]
fn dcs_unhook(&mut self)[src]
fn esc_dispatch(
&mut self,
params: &[i64],
intermediates: &[u8],
ignored_excess_intermediates: bool,
byte: u8
)[src]
&mut self,
params: &[i64],
intermediates: &[u8],
ignored_excess_intermediates: bool,
byte: u8
)
fn csi_dispatch(
&mut self,
params: &[i64],
intermediates: &[u8],
ignored_excess_intermediates: bool,
byte: u8
)[src]
&mut self,
params: &[i64],
intermediates: &[u8],
ignored_excess_intermediates: bool,
byte: u8
)
fn osc_dispatch(&mut self, params: &[&[u8]])[src]
Auto Trait Implementations
impl RefUnwindSafe for CollectingVTActor
impl Send for CollectingVTActor
impl Sync for CollectingVTActor
impl Unpin for CollectingVTActor
impl UnwindSafe for CollectingVTActor
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<I> IntoIterator for I where
I: Iterator, [src]
I: Iterator,
type Item = <I as Iterator>::Item
The type of the elements being iterated over.
type IntoIter = I
Which kind of iterator are we turning this into?
fn into_iter(self) -> I[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,