Type Alias freya_elements::events::WheelEvent

source ·
pub type WheelEvent = Event<WheelData>;

Aliased Type§

struct WheelEvent {
    pub data: Rc<WheelData>,
    /* private fields */
}

Fields§

§data: Rc<WheelData>

The data associated with this event

Implementations

§

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

pub fn new(data: Rc<T>, propagates: bool) -> Event<T>

Create a new event from the inner data

§

impl<T> Event<T>
where T: ?Sized,

pub fn map<U, F>(&self, f: F) -> Event<U>
where U: 'static, F: FnOnce(&T) -> U,

Map the event data to a new type

§Example
rsx! {
   button {
      onclick: move |evt: MouseEvent| {
         let data = evt.map(|data| data.client_coordinates());
         println!("{:?}", data.data());
      }
   }
};

pub fn cancel_bubble(&self)

👎Deprecated: use stop_propagation instead

Prevent this event from continuing to bubble up the tree to parent elements.

§Example
rsx! {
    button {
        onclick: move |evt: Event<MouseData>| {
            evt.cancel_bubble();
        }
    }
};

pub fn propagates(&self) -> bool

Check if the event propagates up the tree to parent elements

pub fn stop_propagation(&self)

Prevent this event from continuing to bubble up the tree to parent elements.

§Example
rsx! {
    button {
        onclick: move |evt: Event<MouseData>| {
            evt.stop_propagation();
        }
    }
};

pub fn data(&self) -> Rc<T>

Get a reference to the inner data from this event

rsx! {
    button {
        onclick: move |evt: Event<MouseData>| {
            let data = evt.data();
            async move {
                println!("{:?}", data);
            }
        }
    }
};

pub fn prevent_default(&self)

Prevent the default action of the event.

§Example
fn App() -> Element {
    rsx! {
        a {
            // You can prevent the default action of the event with `prevent_default`
            onclick: move |event| {
                event.prevent_default();
            },
            href: "https://dioxuslabs.com",
            "don't go to the link"
        }
    }
}

Note: This must be called synchronously when handling the event. Calling it after the event has been handled will have no effect.

This method is not available on the LiveView renderer because LiveView handles all events over a websocket which cannot block.

pub fn default_action_enabled(&self) -> bool

Check if the default action of the event is enabled.

Trait Implementations

§

impl<T> Clone for Event<T>
where T: ?Sized,

§

fn clone(&self) -> Event<T>

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
§

impl<T> Debug for Event<T>
where T: Debug,

§

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

Formats the value using the given formatter. Read more
§

impl<T> Deref for Event<T>

§

type Target = Rc<T>

The resulting type after dereferencing.
§

fn deref(&self) -> &<Event<T> as Deref>::Target

Dereferences the value.