[][src]Struct seed::events::Listener

pub struct Listener<Ms> {
    pub trigger: Ev,
    pub handler: Option<Box<dyn FnMut(Event) -> Ms>>,
    pub closure: Option<Closure<dyn FnMut(Event)>>,
    pub control_val: Option<String>,
    pub control_checked: Option<bool>,
    // some fields omitted
}

Ev-handling for Elements

Fields

trigger: Evhandler: Option<Box<dyn FnMut(Event) -> Ms>>closure: Option<Closure<dyn FnMut(Event)>>control_val: Option<String>control_checked: Option<bool>

Methods

impl<Ms> Listener<Ms>[src]

pub fn new(
    trigger: &str,
    handler: Option<Box<dyn FnMut(Event) -> Ms>>,
    category: Option<Category>,
    message: Option<Ms>
) -> Self
[src]

pub fn new_control(val: String) -> Self[src]

Set up a listener that keeps the field's value in sync with the specific value, from the model

pub fn new_control_check(checked: bool) -> Self[src]

Similar to new_control, but for checkboxes

pub fn attach<T>(&mut self, el_ws: &T, mailbox: Mailbox<Ms>) where
    T: AsRef<EventTarget>, 
[src]

This method is where the processing logic for events happens.

pub fn detach<T>(&mut self, el_ws: &T) where
    T: AsRef<EventTarget>, 
[src]

Trait Implementations

impl<Ms: 'static, OtherMs: 'static> MessageMapper<Ms, OtherMs> for Listener<Ms>[src]

type SelfWithOtherMs = Listener<OtherMs>

impl<Ms> UpdateEl<El<Ms>> for Listener<Ms>[src]

impl<Ms> PartialEq<Listener<Ms>> for Listener<Ms>[src]

impl<Ms> Debug for Listener<Ms>[src]

Auto Trait Implementations

impl<Ms> !Send for Listener<Ms>

impl<Ms> !Sync for Listener<Ms>

impl<Ms> Unpin for Listener<Ms> where
    Ms: Unpin

impl<Ms> !UnwindSafe for Listener<Ms>

impl<Ms> !RefUnwindSafe for Listener<Ms>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]