pub struct EventHandlerIR {
pub event_type: String,
pub handler_function: String,
pub prevent_default: bool,
pub stop_propagation: bool,
}
Expand description
イベントハンドラーIR
Fields§
§event_type: String
§handler_function: String
§prevent_default: bool
§stop_propagation: bool
Trait Implementations§
Source§impl Clone for EventHandlerIR
impl Clone for EventHandlerIR
Source§fn clone(&self) -> EventHandlerIR
fn clone(&self) -> EventHandlerIR
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EventHandlerIR
impl Debug for EventHandlerIR
Source§impl<'de> Deserialize<'de> for EventHandlerIR
impl<'de> Deserialize<'de> for EventHandlerIR
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EventHandlerIR
impl PartialEq for EventHandlerIR
Source§impl Serialize for EventHandlerIR
impl Serialize for EventHandlerIR
impl StructuralPartialEq for EventHandlerIR
Auto Trait Implementations§
impl Freeze for EventHandlerIR
impl RefUnwindSafe for EventHandlerIR
impl Send for EventHandlerIR
impl Sync for EventHandlerIR
impl Unpin for EventHandlerIR
impl UnwindSafe for EventHandlerIR
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more