[][src]Struct xterm_js_rs::xterm::BufferCell

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

Implementations

impl BufferCell[src]

pub fn get_width(&self) -> u32[src]

impl BufferCell[src]

pub fn get_chars(&self) -> String[src]

impl BufferCell[src]

pub fn get_code(&self) -> u32[src]

impl BufferCell[src]

pub fn get_fg_color_mode(&self) -> u32[src]

impl BufferCell[src]

pub fn get_bg_color_mode(&self) -> u32[src]

impl BufferCell[src]

pub fn get_fg_color(&self) -> u32[src]

impl BufferCell[src]

pub fn bg_color(&self) -> u32[src]

impl BufferCell[src]

pub fn is_bold(&self) -> u32[src]

impl BufferCell[src]

pub fn is_italic(&self) -> u32[src]

impl BufferCell[src]

pub fn is_dim(&self) -> u32[src]

impl BufferCell[src]

pub fn is_underline(&self) -> u32[src]

impl BufferCell[src]

impl BufferCell[src]

pub fn is_inverse(&self) -> u32[src]

impl BufferCell[src]

pub fn is_invisible(&self) -> u32[src]

impl BufferCell[src]

pub fn is_fg_rgb(&self) -> bool[src]

impl BufferCell[src]

pub fn is_bg_rgb(&self) -> bool[src]

impl BufferCell[src]

pub fn is_fg_palette(&self) -> bool[src]

impl BufferCell[src]

pub fn is_bg_palette(&self) -> bool[src]

impl BufferCell[src]

pub fn is_fg_default(&self) -> bool[src]

impl BufferCell[src]

pub fn is_bg_default(&self) -> bool[src]

impl BufferCell[src]

Trait Implementations

impl AsRef<BufferCell> for BufferCell[src]

impl AsRef<JsValue> for BufferCell[src]

impl Deref for BufferCell[src]

type Target = JsValue

The resulting type after dereferencing.

impl From<BufferCell> for JsValue[src]

impl From<JsValue> for BufferCell[src]

impl FromWasmAbi for BufferCell[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 BufferCell[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 BufferCell[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 BufferCell[src]

impl OptionFromWasmAbi for BufferCell[src]

impl OptionIntoWasmAbi for BufferCell[src]

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

impl RefFromWasmAbi for BufferCell[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<BufferCell>

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 BufferCell[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> 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.