[][src]Struct qute::design::Designer

pub struct Designer { /* fields omitted */ }

Implementations

impl Designer[src]

pub fn new(raw_string: &str) -> Self[src]

pub fn none(self) -> String[src]

pub fn bold(&mut self) -> Self[src]

pub fn dim(&mut self) -> Self[src]

pub fn italic(&mut self) -> Self[src]

pub fn underline(&mut self) -> Self[src]

NOTE: the "blink" mode works in the tty and xterm only

pub fn reverse(&mut self) -> Self[src]

NOTE: the "reverse" mode invert the foreground and the background colors

pub fn hidden(&mut self) -> Self[src]

NOTE: the "hidden" mode can be used for passwords

pub fn strikethrough(&mut self) -> Self[src]

pub fn black(&mut self) -> Self[src]

pub fn red(&mut self) -> Self[src]

pub fn green(&mut self) -> Self[src]

pub fn yellow(&mut self) -> Self[src]

pub fn blue(&mut self) -> Self[src]

pub fn magenta(&mut self) -> Self[src]

pub fn cyan(&mut self) -> Self[src]

pub fn gray(&mut self) -> Self[src]

pub fn light_gray(&mut self) -> Self[src]

pub fn light_red(&mut self) -> Self[src]

pub fn light_green(&mut self) -> Self[src]

pub fn light_yellow(&mut self) -> Self[src]

pub fn light_blue(&mut self) -> Self[src]

pub fn light_magenta(&mut self) -> Self[src]

pub fn light_cyan(&mut self) -> Self[src]

pub fn white(&mut self) -> Self[src]

pub fn background_black(&mut self) -> Self[src]

pub fn background_red(&mut self) -> Self[src]

pub fn background_green(&mut self) -> Self[src]

pub fn background_yellow(&mut self) -> Self[src]

pub fn background_blue(&mut self) -> Self[src]

pub fn background_magenta(&mut self) -> Self[src]

pub fn background_cyan(&mut self) -> Self[src]

pub fn background_gray(&mut self) -> Self[src]

pub fn background_light_gray(&mut self) -> Self[src]

pub fn background_light_red(&mut self) -> Self[src]

pub fn background_light_green(&mut self) -> Self[src]

pub fn background_light_yellow(&mut self) -> Self[src]

pub fn background_light_blue(&mut self) -> Self[src]

pub fn background_light_magenta(&mut self) -> Self[src]

pub fn background_light_cyan(&mut self) -> Self[src]

pub fn background_white(&mut self) -> Self[src]

pub fn set_color(&mut self, color: u8) -> Self[src]

pub fn set_background(&mut self, color: u8) -> Self[src]

pub fn set_rgb_color(&mut self, r: u8, g: u8, b: u8) -> Self[src]

pub fn set_rgb_background(&mut self, r: u8, g: u8, b: u8) -> Self[src]

pub fn set_css_color(&mut self, name: &str) -> Self[src]

default color: rgb(0, 0, 0)

pub fn set_css_background(&mut self, name: &str) -> Self[src]

default color: rgb(0, 0, 0)

Trait Implementations

impl Clone for Designer[src]

impl Debug for Designer[src]

impl Display for Designer[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.