pub enum TabControlEvent {
None,
TabDragMove {
fe: FingerMoveEvent,
tab_id: usize,
},
TabDragEnd {
fe: FingerUpEvent,
tab_id: usize,
},
TabSelect {
tab_id: usize,
},
TabClose {
tab_id: usize,
},
}
Variants§
Trait Implementations§
Source§impl Clone for TabControlEvent
impl Clone for TabControlEvent
Source§fn clone(&self) -> TabControlEvent
fn clone(&self) -> TabControlEvent
Returns a copy 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 PartialEq for TabControlEvent
impl PartialEq for TabControlEvent
impl StructuralPartialEq for TabControlEvent
Auto Trait Implementations§
impl Freeze for TabControlEvent
impl RefUnwindSafe for TabControlEvent
impl Send for TabControlEvent
impl Sync for TabControlEvent
impl Unpin for TabControlEvent
impl UnwindSafe for TabControlEvent
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