event_listener_primitives

Struct Bag

Source
pub struct Bag<F: Send + Sync + Clone + 'static, A1: ?Sized = Private, A2: ?Sized = Private, A3: ?Sized = Private, A4: ?Sized = Private, A5: ?Sized = Private> { /* private fields */ }
Expand description

Data structure that holds Fn() event handlers

Implementations§

Source§

impl<F, A1, A2, A3, A4, A5> Bag<F, A1, A2, A3, A4, A5>
where F: Send + Sync + Clone + 'static, A1: ?Sized, A2: ?Sized, A3: ?Sized, A4: ?Sized, A5: ?Sized,

Source

pub fn add(&self, callback: F) -> HandlerId

Add new event handler to a bag

Source

pub fn call<A>(&self, applicator: A)
where A: Fn(&F),

Call applicator with each handler and keep handlers in the bag

Source§

impl<F: Fn() + Send + Sync + ?Sized + 'static> Bag<Arc<F>>

Source

pub fn call_simple(&self)

Call each handler without arguments and keep handlers in the bag

Source§

impl<A1, F> Bag<Arc<F>, A1>
where A1: Sized, F: Fn(&A1) + Send + Sync + ?Sized + 'static,

Source

pub fn call_simple(&self, a1: &A1)

Call each handler without arguments and keep handlers in the bag

Source§

impl<A1, A2, F> Bag<Arc<F>, A1, A2>
where A1: Sized, A2: Sized, F: Fn(&A1, &A2) + Send + Sync + ?Sized + 'static,

Source

pub fn call_simple(&self, a1: &A1, a2: &A2)

Call each handler without arguments and keep handlers in the bag

Source§

impl<A1, A2, A3, F> Bag<Arc<F>, A1, A2, A3>
where A1: Sized, A2: Sized, A3: Sized, F: Fn(&A1, &A2, &A3) + Send + Sync + ?Sized + 'static,

Source

pub fn call_simple(&self, a1: &A1, a2: &A2, a3: &A3)

Call each handler without arguments and keep handlers in the bag

Source§

impl<A1, A2, A3, A4, F> Bag<Arc<F>, A1, A2, A3, A4>
where A1: Sized, A2: Sized, A3: Sized, A4: Sized, F: Fn(&A1, &A2, &A3, &A4) + Send + Sync + ?Sized + 'static,

Source

pub fn call_simple(&self, a1: &A1, a2: &A2, a3: &A3, a4: &A4)

Call each handler without arguments and keep handlers in the bag

Source§

impl<A1, A2, A3, A4, A5, F> Bag<Arc<F>, A1, A2, A3, A4, A5>
where A1: Sized, A2: Sized, A3: Sized, A4: Sized, A5: Sized, F: Fn(&A1, &A2, &A3, &A4, &A5) + Send + Sync + ?Sized + 'static,

Source

pub fn call_simple(&self, a1: &A1, a2: &A2, a3: &A3, a4: &A4, a5: &A5)

Call each handler without arguments and keep handlers in the bag

Trait Implementations§

Source§

impl<F, A1, A2, A3, A4, A5> Clone for Bag<F, A1, A2, A3, A4, A5>
where F: Send + Sync + Clone + 'static, A1: ?Sized, A2: ?Sized, A3: ?Sized, A4: ?Sized, A5: ?Sized,

Source§

fn clone(&self) -> Self

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<F, A1, A2, A3, A4, A5> Debug for Bag<F, A1, A2, A3, A4, A5>
where F: Send + Sync + Clone + 'static, A1: ?Sized, A2: ?Sized, A3: ?Sized, A4: ?Sized, A5: ?Sized,

Source§

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

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

impl<F, A1, A2, A3, A4, A5> Default for Bag<F, A1, A2, A3, A4, A5>
where F: Send + Sync + Clone + 'static, A1: ?Sized, A2: ?Sized, A3: ?Sized, A4: ?Sized, A5: ?Sized,

Source§

fn default() -> Self

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

Auto Trait Implementations§

§

impl<F, A1, A2, A3, A4, A5> Freeze for Bag<F, A1, A2, A3, A4, A5>
where A1: ?Sized, A2: ?Sized, A3: ?Sized, A4: ?Sized, A5: ?Sized,

§

impl<F, A1 = Private, A2 = Private, A3 = Private, A4 = Private, A5 = Private> !RefUnwindSafe for Bag<F, A1, A2, A3, A4, A5>

§

impl<F, A1, A2, A3, A4, A5> Send for Bag<F, A1, A2, A3, A4, A5>
where A1: Send + ?Sized, A2: Send + ?Sized, A3: Send + ?Sized, A4: Send + ?Sized, A5: Send + ?Sized,

§

impl<F, A1, A2, A3, A4, A5> Sync for Bag<F, A1, A2, A3, A4, A5>
where A1: Sync + ?Sized, A2: Sync + ?Sized, A3: Sync + ?Sized, A4: Sync + ?Sized, A5: Sync + ?Sized,

§

impl<F, A1, A2, A3, A4, A5> Unpin for Bag<F, A1, A2, A3, A4, A5>
where A1: Unpin + ?Sized, A2: Unpin + ?Sized, A3: Unpin + ?Sized, A4: Unpin + ?Sized, A5: Unpin + ?Sized,

§

impl<F, A1 = Private, A2 = Private, A3 = Private, A4 = Private, A5 = Private> !UnwindSafe for Bag<F, A1, A2, A3, A4, A5>

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 u8)

🔬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, 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<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.