pub enum DragLibrary {
ReactBeautifulDnd,
SortableJS,
AngularCdk,
DndKit,
JQueryUI,
Html5Native,
Unknown,
}Expand description
Which drag-and-drop library is in use on the page.
Variants§
ReactBeautifulDnd
Facebook’s react-beautiful-dnd library.
SortableJS
SortableJS / Sortable library.
AngularCdk
Angular CDK drag-and-drop module.
DndKit
dnd-kit (React-based drag-and-drop toolkit).
JQueryUI
jQuery UI Sortable / Draggable.
Html5Native
Native HTML5 drag-and-drop API.
Unknown
No recognised drag-and-drop library.
Trait Implementations§
Source§impl Clone for DragLibrary
impl Clone for DragLibrary
Source§fn clone(&self) -> DragLibrary
fn clone(&self) -> DragLibrary
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 DragLibrary
impl Debug for DragLibrary
Source§impl<'de> Deserialize<'de> for DragLibrary
impl<'de> Deserialize<'de> for DragLibrary
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 DragLibrary
impl PartialEq for DragLibrary
Source§impl Serialize for DragLibrary
impl Serialize for DragLibrary
impl Eq for DragLibrary
impl StructuralPartialEq for DragLibrary
Auto Trait Implementations§
impl Freeze for DragLibrary
impl RefUnwindSafe for DragLibrary
impl Send for DragLibrary
impl Sync for DragLibrary
impl Unpin for DragLibrary
impl UnsafeUnpin for DragLibrary
impl UnwindSafe for DragLibrary
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