pub struct GraphicSelection { /* private fields */ }
Implementations§
Source§impl GraphicSelection
impl GraphicSelection
pub fn new() -> Self
Sourcepub fn default(&mut self) -> &mut Self
pub fn default(&mut self) -> &mut Self
Default rendition (implementation-defined), cancels the effect of any preceding occurrence of SGR in the data stream regardless of the setting of the GRAPHIC RENDITION COMBINATION MODE (GRCM).
pub fn italic(&mut self) -> &mut Self
pub fn underline(&mut self) -> &mut Self
Sourcepub fn slow_blink(&mut self) -> &mut Self
pub fn slow_blink(&mut self) -> &mut Self
Slowly blinking (less than 150/minute)
Sourcepub fn fast_blink(&mut self) -> &mut Self
pub fn fast_blink(&mut self) -> &mut Self
Rapidly blinking (150/minute or more)
pub fn negative(&mut self) -> &mut Self
pub fn conceal(&mut self) -> &mut Self
Sourcepub fn cross(&mut self) -> &mut Self
pub fn cross(&mut self) -> &mut Self
Crossed-out (characters still legible but marked as to be deleted)
pub fn primary_font(&mut self) -> &mut Self
pub fn alter1_font(&mut self) -> &mut Self
pub fn alter2_font(&mut self) -> &mut Self
pub fn alter3_font(&mut self) -> &mut Self
pub fn alter4_font(&mut self) -> &mut Self
pub fn alter5_font(&mut self) -> &mut Self
pub fn alter6_font(&mut self) -> &mut Self
pub fn alter7_font(&mut self) -> &mut Self
pub fn alter8_font(&mut self) -> &mut Self
pub fn alter9_font(&mut self) -> &mut Self
pub fn gothic_font(&mut self) -> &mut Self
pub fn double_underline(&mut self) -> &mut Self
Sourcepub fn not_bold_or_faint(&mut self) -> &mut Self
pub fn not_bold_or_faint(&mut self) -> &mut Self
Normal color or normal intensity
Sourcepub fn not_italic(&mut self) -> &mut Self
pub fn not_italic(&mut self) -> &mut Self
Not italicized, not gothic font
Sourcepub fn not_underline(&mut self) -> &mut Self
pub fn not_underline(&mut self) -> &mut Self
Not underline (neither singly or doubly)
Sourcepub fn not_negative(&mut self) -> &mut Self
pub fn not_negative(&mut self) -> &mut Self
Positive image
Sourcepub fn not_conceal(&mut self) -> &mut Self
pub fn not_conceal(&mut self) -> &mut Self
Revealed characters
pub fn not_cross(&mut self) -> &mut Self
pub fn fg_black(&mut self) -> &mut Self
pub fn fg_red(&mut self) -> &mut Self
pub fn fg_green(&mut self) -> &mut Self
pub fn fg_yellow(&mut self) -> &mut Self
pub fn fg_blue(&mut self) -> &mut Self
pub fn fg_magenta(&mut self) -> &mut Self
pub fn fg_cyan(&mut self) -> &mut Self
pub fn fg_gray(&mut self) -> &mut Self
pub fn fg_color(&mut self) -> &mut Self
pub fn fg_default(&mut self) -> &mut Self
pub fn bg_black(&mut self) -> &mut Self
pub fn bg_red(&mut self) -> &mut Self
pub fn bg_green(&mut self) -> &mut Self
pub fn bg_yellow(&mut self) -> &mut Self
pub fn bg_blue(&mut self) -> &mut Self
pub fn bg_magenta(&mut self) -> &mut Self
pub fn bg_cyan(&mut self) -> &mut Self
pub fn bg_gray(&mut self) -> &mut Self
pub fn bg_color(&mut self) -> &mut Self
pub fn bg_default(&mut self) -> &mut Self
pub fn frame(&mut self) -> &mut Self
pub fn encircle(&mut self) -> &mut Self
pub fn overline(&mut self) -> &mut Self
pub fn not_frame_not_encircle(&mut self) -> &mut Self
pub fn not_overline(&mut self) -> &mut Self
pub fn ideogram_underline(&mut self) -> &mut Self
pub fn ideogram_double_underline(&mut self) -> &mut Self
pub fn ideogram_overline(&mut self) -> &mut Self
pub fn ideogram_double_overline(&mut self) -> &mut Self
pub fn ideogram_stress_marking(&mut self) -> &mut Self
pub fn ideogram_cancel(&mut self) -> &mut Self
pub fn get(&self) -> ControlSequence
Trait Implementations§
Source§impl Clone for GraphicSelection
impl Clone for GraphicSelection
Source§fn clone(&self) -> GraphicSelection
fn clone(&self) -> GraphicSelection
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for GraphicSelection
impl RefUnwindSafe for GraphicSelection
impl Send for GraphicSelection
impl Sync for GraphicSelection
impl Unpin for GraphicSelection
impl UnwindSafe for GraphicSelection
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