pub enum InputEvents {
DragIntercepted(DragIntercepted),
}Variants§
DragIntercepted(DragIntercepted)
Implementations§
Source§impl InputEvents
impl InputEvents
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for InputEvents
impl Clone for InputEvents
Source§fn clone(&self) -> InputEvents
fn clone(&self) -> InputEvents
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 InputEvents
impl Debug for InputEvents
Source§impl<'de> Deserialize<'de> for InputEvents
impl<'de> Deserialize<'de> for InputEvents
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 From<DragIntercepted> for InputEvents
impl From<DragIntercepted> for InputEvents
Source§fn from(v: DragIntercepted) -> Self
fn from(v: DragIntercepted) -> Self
Converts to this type from the input type.
Source§impl From<InputEvents> for BrowserProtocolEvents
impl From<InputEvents> for BrowserProtocolEvents
Source§fn from(v: InputEvents) -> Self
fn from(v: InputEvents) -> Self
Converts to this type from the input type.
Source§impl From<InputEvents> for Event
impl From<InputEvents> for Event
Source§fn from(v: InputEvents) -> Self
fn from(v: InputEvents) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InputEvents
impl PartialEq for InputEvents
Source§impl Serialize for InputEvents
impl Serialize for InputEvents
Source§impl TryFrom<BrowserProtocolEvents> for InputEvents
impl TryFrom<BrowserProtocolEvents> for InputEvents
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <InputEvents as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <InputEvents as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for InputEvents
impl TryFrom<Event> for InputEvents
Source§impl TryFrom<InputEvents> for DragIntercepted
impl TryFrom<InputEvents> for DragIntercepted
Source§type Error = InputEvents
type Error = InputEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: InputEvents,
) -> Result<Self, <DragIntercepted as TryFrom<InputEvents>>::Error>
fn try_from( e: InputEvents, ) -> Result<Self, <DragIntercepted as TryFrom<InputEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for InputEvents
Auto Trait Implementations§
impl Freeze for InputEvents
impl RefUnwindSafe for InputEvents
impl Send for InputEvents
impl Sync for InputEvents
impl Unpin for InputEvents
impl UnsafeUnpin for InputEvents
impl UnwindSafe for InputEvents
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