[−][src]Trait xterm_js_sys::ext::disposable::XtermDisposable
feature="ext" only.Rust version of the Disposable interface.
See the "mirroring interfaces" section
of the xterm module docs for more information.
Required methods
fn dispose(&self)
feature="ext" only.Disposes of the instance.
This can involve unregistering an event listener or cleaning up resources or anything else that should happen when an instance is disposed of.
Dual of Disposable::dispose.
Provided methods
fn into_js_by_ref(&self) -> Disposable where
Self: Clone + 'static,
Self: Clone + 'static,
feature="ext" only.Copy of IntoJsInterface::by_ref.
fn into_js(self) -> Disposable where
Self: Sized + 'static,
Self: Sized + 'static,
feature="ext" only.Copy of IntoJsInterface::to.
fn into_js_inner(&'static self) -> Object where
Self: 'static,
Self: 'static,
feature="ext" only.Internal version of into_js_by_ref that doesn't
leak self.
Useful for trait/interface hierarchies.
Implementors
impl<X> XtermDisposable for X where
X: Clone + 'static,
X: AsRef<Disposable>, [src]
X: Clone + 'static,
X: AsRef<Disposable>,
This provides an impl of the XtermDisposable Rust trait for all things that 'implement'
the Disposable JS interface the wasm-bindgen way.
See the "mirroring interfaces" section of the
xterm module docs for more information.
fn dispose(&self)[src]
feature="ext" only.dispose for types that implement the Disposable interface.
fn into_js_by_ref(&self) -> Disposable[src]
feature="ext" only.into_js_by_ref for types that implement the
Disposable interface.
This differs from the default impl in that it manages to avoid a Clone before effectively
doing what into_js does.
fn into_js(self) -> Disposable[src]
feature="ext" only.into_js for types that implement the
Disposable interface.
This differs from the default impl in that it manages to avoid "double wrapping" the methods
in the interface (types that impl Disposable the wasm-bindgen way already have
a wrapped up Object they can hand us).