struct WinconCapture {
style: Style,
printable: String,
ready: Option<Style>,
}
Fields§
§style: Style
§printable: String
§ready: Option<Style>
Implementations§
Source§impl WinconCapture
impl WinconCapture
Trait Implementations§
Source§impl Clone for WinconCapture
impl Clone for WinconCapture
Source§fn clone(&self) -> WinconCapture
fn clone(&self) -> WinconCapture
Returns a copy 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 WinconCapture
impl Debug for WinconCapture
Source§impl Default for WinconCapture
impl Default for WinconCapture
Source§fn default() -> WinconCapture
fn default() -> WinconCapture
Returns the “default value” for a type. Read more
Source§impl PartialEq for WinconCapture
impl PartialEq for WinconCapture
Source§impl Perform for WinconCapture
impl Perform for WinconCapture
Source§fn csi_dispatch(
&mut self,
params: &Params,
_intermediates: &[u8],
ignore: bool,
action: u8,
)
fn csi_dispatch( &mut self, params: &Params, _intermediates: &[u8], ignore: bool, action: u8, )
A final character has arrived for a CSI sequence Read more
Source§fn hook(
&mut self,
_params: &Params,
_intermediates: &[u8],
_ignore: bool,
_action: u8,
)
fn hook( &mut self, _params: &Params, _intermediates: &[u8], _ignore: bool, _action: u8, )
Invoked when a final character arrives in first part of device control string. Read more
Source§fn put(&mut self, _byte: u8)
fn put(&mut self, _byte: u8)
Pass bytes as part of a device control string to the handle chosen in
hook
. C0 controls
will also be passed to the handler.Source§fn osc_dispatch(&mut self, _params: &[&[u8]], _bell_terminated: bool)
fn osc_dispatch(&mut self, _params: &[&[u8]], _bell_terminated: bool)
Dispatch an operating system command.
impl Eq for WinconCapture
impl StructuralPartialEq for WinconCapture
Auto Trait Implementations§
impl Freeze for WinconCapture
impl RefUnwindSafe for WinconCapture
impl Send for WinconCapture
impl Sync for WinconCapture
impl Unpin for WinconCapture
impl UnwindSafe for WinconCapture
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