Struct observable_react::observable::ReactObservable[][src]

pub struct ReactObservable { /* fields omitted */ }

Wrapper around JsObserve to which provides React binding convenience methods

The JsObserve trait, and this wrapper are necessary because wasm_bindgen cannot express generics at this time.

Implementations

impl ReactObservable[src]

pub fn get(&self) -> JsValue[src]

pub fn map(&self, cb: Function) -> JsValue[src]

pub fn bind_component(&mut self, component: ReactComponent)[src]

Bind this observable to a React component

pub fn unbind(&mut self)[src]

pub fn subscribe(&mut self, cb: Function) -> Function[src]

Trait Implementations

impl<O> From<O> for ReactObservable where
    O: JsObserve + 'static + Sized
[src]

impl From<ReactObservable> for JsValue[src]

impl FromWasmAbi for ReactObservable[src]

type Abi = u32

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

impl IntoWasmAbi for ReactObservable[src]

type Abi = u32

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

impl OptionFromWasmAbi for ReactObservable[src]

impl OptionIntoWasmAbi for ReactObservable[src]

impl RefFromWasmAbi for ReactObservable[src]

type Abi = u32

The wasm ABI type references to Self are recovered from.

type Anchor = Ref<'static, ReactObservable>

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 RefMutFromWasmAbi for ReactObservable[src]

type Abi = u32

Same as RefFromWasmAbi::Abi

type Anchor = RefMut<'static, ReactObservable>

Same as RefFromWasmAbi::Anchor

impl WasmDescribe for ReactObservable[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.