pub struct DragAndDropConfiguration {
pub enabled: bool,
pub modifiers: Vec<Modifier>,
}Expand description
Drag-and-drop behaviour.
Fields§
§enabled: bool§modifiers: Vec<Modifier>The modifier keys required to initiate a drag-and-drop operation.
Trait Implementations§
Source§impl Clone for DragAndDropConfiguration
impl Clone for DragAndDropConfiguration
Source§fn clone(&self) -> DragAndDropConfiguration
fn clone(&self) -> DragAndDropConfiguration
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 DragAndDropConfiguration
impl Debug for DragAndDropConfiguration
Source§impl Default for DragAndDropConfiguration
impl Default for DragAndDropConfiguration
Auto Trait Implementations§
impl Freeze for DragAndDropConfiguration
impl RefUnwindSafe for DragAndDropConfiguration
impl Send for DragAndDropConfiguration
impl Sync for DragAndDropConfiguration
impl Unpin for DragAndDropConfiguration
impl UnwindSafe for DragAndDropConfiguration
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