pub struct DragInterceptedParams {
pub data: DragData,
}Expand description
Emitted only when Input.setInterceptDrags is enabled. Use this data with Input.dispatchDragEvent to
restore normal drag and drop behavior.
dragIntercepted
Fields§
§data: DragDataTrait Implementations§
Source§impl Clone for DragInterceptedParams
impl Clone for DragInterceptedParams
Source§fn clone(&self) -> DragInterceptedParams
fn clone(&self) -> DragInterceptedParams
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 DragInterceptedParams
impl Debug for DragInterceptedParams
Source§impl<'de> Deserialize<'de> for DragInterceptedParams
impl<'de> Deserialize<'de> for DragInterceptedParams
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 DragInterceptedParams
impl PartialEq for DragInterceptedParams
Source§impl Serialize for DragInterceptedParams
impl Serialize for DragInterceptedParams
impl StructuralPartialEq for DragInterceptedParams
Auto Trait Implementations§
impl Freeze for DragInterceptedParams
impl RefUnwindSafe for DragInterceptedParams
impl Send for DragInterceptedParams
impl Sync for DragInterceptedParams
impl Unpin for DragInterceptedParams
impl UnsafeUnpin for DragInterceptedParams
impl UnwindSafe for DragInterceptedParams
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