pub enum ControlSequenceInducerParameter {
Show 24 variants
CursorUpParameter(u32),
CursorDownParameter(u32),
CursorForwardParameter(u32),
CursorBackParameter(u32),
CursorNextLineParameter(u32),
CursorPreviousLineParameter(u32),
CursorHorizontalAbsoluteParameter(u32),
CursorPositionParameter(u32, u32),
EraseScreenAfterCursorParameter,
EraseScreenBeforeCursorParameter,
EraseScreenParameter,
EraseScreenAndScrollbackParameter,
EraseLineAfterCursorParameter,
EraseLineBeforeCursorParameter,
EraseLineParameter,
ScrollUpParameter(u32),
ScrollDownParameter(u32),
HorizontalVerticalPositionParameter(u32, u32),
SelectGraphicRenditionSequenceParameter(Vec<SelectGraphicRenditionParameter>),
AUXPortOnParameter,
AUXPortOffParameter,
DeviceStatusReportParameter,
SaveCursorPositionParameter,
RestoreCursorPositionParameter,
}Variants§
CursorUpParameter(u32)
CursorDownParameter(u32)
CursorForwardParameter(u32)
CursorBackParameter(u32)
CursorNextLineParameter(u32)
CursorPreviousLineParameter(u32)
CursorHorizontalAbsoluteParameter(u32)
CursorPositionParameter(u32, u32)
EraseScreenAfterCursorParameter
EraseScreenBeforeCursorParameter
EraseScreenParameter
EraseScreenAndScrollbackParameter
EraseLineAfterCursorParameter
EraseLineBeforeCursorParameter
EraseLineParameter
ScrollUpParameter(u32)
ScrollDownParameter(u32)
HorizontalVerticalPositionParameter(u32, u32)
SelectGraphicRenditionSequenceParameter(Vec<SelectGraphicRenditionParameter>)
AUXPortOnParameter
AUXPortOffParameter
DeviceStatusReportParameter
SaveCursorPositionParameter
RestoreCursorPositionParameter
Implementations§
Auto Trait Implementations§
impl Freeze for ControlSequenceInducerParameter
impl RefUnwindSafe for ControlSequenceInducerParameter
impl Send for ControlSequenceInducerParameter
impl Sync for ControlSequenceInducerParameter
impl Unpin for ControlSequenceInducerParameter
impl UnwindSafe for ControlSequenceInducerParameter
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