Struct Trigger

Source
pub struct Trigger { /* private fields */ }
Expand description

A generic trigger handler for evaluating conditions based on stored arguments. Trigger allows you to define a condition as a function, associate it with an argument, and check whether the condition is met.

§Usage

Trigger is use for creating a Selector object.

§Example

use feather_tui as tui;
 
tui::tui_trg_new_trigger_func!(trigger, arg, {
    arg.downcast_ref::<u32>().unwrap() == 5
});
 
let mut trig = tui::trg::Trigger::new(trigger, 5u32);

trig.check(); // Condition is met return True
trig.update_arg(6);
trig.check(); // Condition no longer met return False

Implementations§

Source§

impl Trigger

Source

pub fn new<T>(func: fn(&Box<dyn Any>) -> bool, arg: T) -> Self
where T: 'static,

Source

pub fn check(&mut self) -> bool

Source

pub fn update_arg<T>(&mut self, arg: T)
where T: 'static,

Auto Trait Implementations§

§

impl Freeze for Trigger

§

impl !RefUnwindSafe for Trigger

§

impl !Send for Trigger

§

impl !Sync for Trigger

§

impl Unpin for Trigger

§

impl !UnwindSafe for Trigger

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