dioxus_lib::prelude

Struct Callback

source
pub struct Callback<Args = (), Ret = ()> { /* private fields */ }
Expand description

The callback type generated by the rsx! macro when an on field is specified for components.

This makes it possible to pass move |evt| {} style closures into components as property fields.

§Example

rsx! {
    MyComponent { onclick: move |evt| {
        tracing::debug!("clicked");
        42
    } }
}

#[derive(Props)]
struct MyProps {
    onclick: Callback<MouseEvent, i32>,
}

fn MyComponent(cx: MyProps) -> Element {
    rsx! {
        button {
            onclick: move |evt| println!("number: {}", cx.onclick.call(evt)),
        }
    }
}

Implementations§

source§

impl<Args, Ret> Callback<Args, Ret>
where Args: 'static, Ret: 'static,

source

pub fn new<MaybeAsync, Marker>( f: impl FnMut(Args) -> MaybeAsync + 'static, ) -> Callback<Args, Ret>
where MaybeAsync: SpawnIfAsync<Marker, Ret>,

Create a new Callback from an FnMut. The callback is owned by the current scope and will be dropped when the scope is dropped. This should not be called directly in the body of a component because it will not be dropped until the component is dropped.

source

pub fn leak(f: impl FnMut(Args) -> Ret + 'static) -> Callback<Args, Ret>

Leak a new Callback that will not be dropped unless it is manually dropped.

source

pub fn call(&self, arguments: Args) -> Ret

Call this callback with the appropriate argument type

This borrows the callback using a RefCell. Recursively calling a callback will cause a panic.

source

pub fn into_closure(self) -> impl FnMut(Args) + Copy + 'static

Create a impl FnMut + Copy closure from the Closure type

source

pub fn release(&self)

Forcibly drop the internal handler callback, releasing memory

This will force any future calls to “call” to not doing anything

source

pub fn replace(&mut self, callback: Box<dyn FnMut(Args) -> Ret>)

Replace the function in the callback with a new one

Trait Implementations§

source§

impl<Args, Ret> Clone for Callback<Args, Ret>

source§

fn clone(&self) -> Callback<Args, Ret>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Args, Ret> Debug for Callback<Args, Ret>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<T, Ret> Default for Callback<T, Ret>
where T: 'static, Ret: Default + 'static,

source§

fn default() -> Callback<T, Ret>

Returns the “default value” for a type. Read more
source§

impl<Args, Ret> Deref for Callback<Args, Ret>
where Args: 'static, Ret: 'static,

source§

type Target = dyn Fn(Args) -> Ret

The resulting type after dereferencing.
source§

fn deref(&self) -> &<Callback<Args, Ret> as Deref>::Target

Dereferences the value.
source§

impl<Args, Ret> PartialEq for Callback<Args, Ret>
where Args: 'static, Ret: 'static,

source§

fn eq(&self, _: &Callback<Args, Ret>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<Args, Ret> Copy for Callback<Args, Ret>

Auto Trait Implementations§

§

impl<Args, Ret> Freeze for Callback<Args, Ret>

§

impl<Args = (), Ret = ()> !RefUnwindSafe for Callback<Args, Ret>

§

impl<Args = (), Ret = ()> !Send for Callback<Args, Ret>

§

impl<Args = (), Ret = ()> !Sync for Callback<Args, Ret>

§

impl<Args, Ret> Unpin for Callback<Args, Ret>

§

impl<Args = (), Ret = ()> !UnwindSafe for Callback<Args, Ret>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> InitializeFromFunction<T> for T

source§

fn initialize_from_function(f: fn() -> T) -> T

Create an instance of this type from an initialization function
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<Ret> SpawnIfAsync<(), Ret> for Ret

source§

fn spawn(self) -> Ret

Spawn the value into the dioxus runtime if it is an async block
source§

impl<T, O> SuperFrom<T> for O
where O: From<T>,

source§

fn super_from(input: T) -> O

Convert from a type to another type.
source§

impl<T, O, M> SuperInto<O, M> for T
where O: SuperFrom<T, M>,

source§

fn super_into(self) -> O

Convert from a type to another type.
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DependencyElement for T
where T: 'static + PartialEq + Clone,