pub struct ChromeDragDrop {
pub session_id: u64,
pub browsing_context_id: TabId,
pub modifiers: u32,
pub position_in_widget_x: f32,
pub position_in_widget_y: f32,
pub position_in_screen_x: f32,
pub position_in_screen_y: f32,
}Fields§
§session_id: u64§browsing_context_id: TabId§modifiers: u32§position_in_widget_x: f32§position_in_widget_y: f32§position_in_screen_x: f32§position_in_screen_y: f32Trait Implementations§
Source§impl Clone for ChromeDragDrop
impl Clone for ChromeDragDrop
Source§fn clone(&self) -> ChromeDragDrop
fn clone(&self) -> ChromeDragDrop
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 ChromeDragDrop
impl Debug for ChromeDragDrop
Source§impl From<ChromeDragDrop> for DragDrop
impl From<ChromeDragDrop> for DragDrop
Source§fn from(value: ChromeDragDrop) -> Self
fn from(value: ChromeDragDrop) -> Self
Converts to this type from the input type.
Source§impl From<DragDrop> for ChromeDragDrop
impl From<DragDrop> for ChromeDragDrop
Source§impl PartialEq for ChromeDragDrop
impl PartialEq for ChromeDragDrop
impl StructuralPartialEq for ChromeDragDrop
Auto Trait Implementations§
impl Freeze for ChromeDragDrop
impl RefUnwindSafe for ChromeDragDrop
impl Send for ChromeDragDrop
impl Sync for ChromeDragDrop
impl Unpin for ChromeDragDrop
impl UnsafeUnpin for ChromeDragDrop
impl UnwindSafe for ChromeDragDrop
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