Struct dioxus_hooks::UseCallback
source · pub struct UseCallback<O: 'static + ?Sized> { /* private fields */ }Expand description
This callback is not generic over a return type so you can hold a bunch of callbacks at once
If you need a callback that returns a value, you can simply wrap the closure you pass in that sets a value in its scope
Implementations§
source§impl<O> UseCallback<O>
impl<O> UseCallback<O>
Trait Implementations§
source§impl<O: 'static + ?Sized> Clone for UseCallback<O>
impl<O: 'static + ?Sized> Clone for UseCallback<O>
source§impl<O> Deref for UseCallback<O>
impl<O> Deref for UseCallback<O>
source§impl<O: PartialEq + 'static + ?Sized> PartialEq for UseCallback<O>
impl<O: PartialEq + 'static + ?Sized> PartialEq for UseCallback<O>
source§fn eq(&self, other: &UseCallback<O>) -> bool
fn eq(&self, other: &UseCallback<O>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl<O: 'static> Copy for UseCallback<O>
impl<O: 'static + ?Sized> StructuralPartialEq for UseCallback<O>
Auto Trait Implementations§
impl<O> Freeze for UseCallback<O>where
O: ?Sized,
impl<O> !RefUnwindSafe for UseCallback<O>
impl<O> !Send for UseCallback<O>
impl<O> !Sync for UseCallback<O>
impl<O> Unpin for UseCallback<O>where
O: ?Sized,
impl<O> !UnwindSafe for UseCallback<O>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
source§fn super_from(input: T) -> O
fn super_from(input: T) -> O
Convert from a type to another type.
source§impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
source§fn super_into(self) -> O
fn super_into(self) -> O
Convert from a type to another type.