Struct observable_react::observable::ReactObservable [−][src]
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]
O: JsObserve + 'static + Sized,
impl From<ReactObservable> for JsValue
[src]
fn from(value: ReactObservable) -> Self
[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
unsafe fn from_abi(js: u32) -> Self
[src]
impl IntoWasmAbi for ReactObservable
[src]
type Abi = u32
The wasm ABI type that this converts into when crossing the ABI boundary. Read more
fn into_abi(self) -> u32
[src]
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
unsafe fn ref_from_abi(js: Self::Abi) -> Self::Anchor
[src]
impl RefMutFromWasmAbi for ReactObservable
[src]
type Abi = u32
Same as RefFromWasmAbi::Abi
type Anchor = RefMut<'static, ReactObservable>
Same as RefFromWasmAbi::Anchor
unsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor
[src]
impl WasmDescribe for ReactObservable
[src]
Auto Trait Implementations
impl !RefUnwindSafe for ReactObservable
[src]
impl !Send for ReactObservable
[src]
impl !Sync for ReactObservable
[src]
impl Unpin for ReactObservable
[src]
impl !UnwindSafe for ReactObservable
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi,
[src]
T: IntoWasmAbi,
type Abi = <T as IntoWasmAbi>::Abi
Same as IntoWasmAbi::Abi
pub fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,