[][src]Struct xterm_js_rs::xterm::BufferLine

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

Implementations

impl BufferLine[src]

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

impl BufferLine[src]

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

impl BufferLine[src]

pub fn get_cell(&self, x: u32, cell: Option<BufferCell>) -> Option<BufferCell>[src]

impl BufferLine[src]

pub fn translate_to_String(
    &self,
    trim_right: bool,
    start_column: Option<u32>,
    end_column: Option<u32>
) -> String
[src]

Trait Implementations

impl AsRef<BufferLine> for BufferLine[src]

impl AsRef<JsValue> for BufferLine[src]

impl Deref for BufferLine[src]

type Target = JsValue

The resulting type after dereferencing.

impl From<BufferLine> for JsValue[src]

impl From<JsValue> for BufferLine[src]

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

impl OptionFromWasmAbi for BufferLine[src]

impl OptionIntoWasmAbi for BufferLine[src]

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

impl RefFromWasmAbi for BufferLine[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<BufferLine>

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