[][src]Struct xterm_js_rs::xterm::Theme

#[repr(transparent)]pub struct Theme { /* fields omitted */ }

Implementations

impl Theme[src]

pub fn set_foreground(&self, val: &str)[src]

impl Theme[src]

pub fn set_background(&self, val: &str)[src]

impl Theme[src]

pub fn set_cursor(&self, val: &str)[src]

impl Theme[src]

pub fn set_cursor_accent(&self, val: &str)[src]

impl Theme[src]

pub fn set_selection(&self, val: &str)[src]

impl Theme[src]

pub fn set_black(&self, val: &str)[src]

impl Theme[src]

pub fn set_red(&self, val: &str)[src]

impl Theme[src]

pub fn set_green(&self, val: &str)[src]

impl Theme[src]

pub fn set_yellow(&self, val: &str)[src]

impl Theme[src]

pub fn set_blue(&self, val: &str)[src]

impl Theme[src]

pub fn set_magenta(&self, val: &str)[src]

impl Theme[src]

pub fn set_cyan(&self, val: &str)[src]

impl Theme[src]

pub fn set_white(&self, val: &str)[src]

impl Theme[src]

pub fn set_bright_black(&self, val: &str)[src]

impl Theme[src]

pub fn set_bright_red(&self, val: &str)[src]

impl Theme[src]

pub fn set_bright_green(&self, val: &str)[src]

impl Theme[src]

pub fn set_bright_yellow(&self, val: &str)[src]

impl Theme[src]

pub fn set_bright_blue(&self, val: &str)[src]

impl Theme[src]

pub fn set_bright_magenta(&self, val: &str)[src]

impl Theme[src]

pub fn set_bright_cyan(&self, val: &str)[src]

impl Theme[src]

pub fn set_bright_white(&self, val: &str)[src]

impl Theme[src]

pub fn with_foreground(&self, val: &str) -> &Self[src]

pub fn with_background(&self, val: &str) -> &Self[src]

pub fn with_cursor(&self, val: &str) -> &Self[src]

pub fn with_cursor_accent(&self, val: &str) -> &Self[src]

pub fn with_selection(&self, val: &str) -> &Self[src]

pub fn with_black(&self, val: &str) -> &Self[src]

pub fn with_red(&self, val: &str) -> &Self[src]

pub fn with_green(&self, val: &str) -> &Self[src]

pub fn with_yellow(&self, val: &str) -> &Self[src]

pub fn with_blue(&self, val: &str) -> &Self[src]

pub fn with_magenta(&self, val: &str) -> &Self[src]

pub fn with_cyan(&self, val: &str) -> &Self[src]

pub fn with_white(&self, val: &str) -> &Self[src]

pub fn with_bright_black(&self, val: &str) -> &Self[src]

pub fn with_bright_red(&self, val: &str) -> &Self[src]

pub fn with_bright_green(&self, val: &str) -> &Self[src]

pub fn with_bright_yellow(&self, val: &str) -> &Self[src]

pub fn with_bright_blue(&self, val: &str) -> &Self[src]

pub fn with_bright_magenta(&self, val: &str) -> &Self[src]

pub fn with_bright_cyan(&self, val: &str) -> &Self[src]

pub fn with_bright_white(&self, val: &str) -> &Self[src]

impl Theme[src]

pub fn new() -> Self[src]

Trait Implementations

impl AsRef<JsValue> for Theme[src]

impl AsRef<Theme> for Theme[src]

impl Deref for Theme[src]

type Target = JsValue

The resulting type after dereferencing.

impl From<JsValue> for Theme[src]

impl From<Theme> for JsValue[src]

impl FromWasmAbi for Theme[src]

type Abi = <JsValue as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for Theme[src]

type Abi = <JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl<'a> IntoWasmAbi for &'a Theme[src]

type Abi = <&'a JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl JsCast for Theme[src]

impl OptionFromWasmAbi for Theme[src]

impl OptionIntoWasmAbi for Theme[src]

impl<'a> OptionIntoWasmAbi for &'a Theme[src]

impl RefFromWasmAbi for Theme[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<Theme>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more

impl WasmDescribe for Theme[src]

Auto Trait Implementations

impl RefUnwindSafe for Theme

impl !Send for Theme

impl !Sync for Theme

impl Unpin for Theme

impl UnwindSafe for Theme

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> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

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.