pub enum DropZone {
Center,
Left,
Right,
Top,
Bottom,
}Expand description
Where a dragged panel would land relative to the group under the pointer.
Variants§
Center
Join the group under the pointer as another tab.
Left
Split it, taking the left half.
Right
Split it, taking the right half.
Top
Split it, taking the top half.
Bottom
Split it, taking the bottom half.
Implementations§
Trait Implementations§
impl Copy for DropZone
impl Eq for DropZone
impl StructuralPartialEq for DropZone
Auto Trait Implementations§
impl Freeze for DropZone
impl RefUnwindSafe for DropZone
impl Send for DropZone
impl Sync for DropZone
impl Unpin for DropZone
impl UnsafeUnpin for DropZone
impl UnwindSafe for DropZone
Blanket Implementations§
Source§impl<T> AppLifecycle for Twhere
T: ?Sized,
impl<T> AppLifecycle for Twhere
T: ?Sized,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.