pub enum SplitterEvent {
None,
Moving {
new_pos: f32,
},
MovingEnd {
new_align: SplitterAlign,
new_pos: f32,
},
}
Variants§
Trait Implementations§
Source§impl Clone for SplitterEvent
impl Clone for SplitterEvent
Source§fn clone(&self) -> SplitterEvent
fn clone(&self) -> SplitterEvent
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 PartialEq for SplitterEvent
impl PartialEq for SplitterEvent
impl StructuralPartialEq for SplitterEvent
Auto Trait Implementations§
impl Freeze for SplitterEvent
impl RefUnwindSafe for SplitterEvent
impl Send for SplitterEvent
impl Sync for SplitterEvent
impl Unpin for SplitterEvent
impl UnwindSafe for SplitterEvent
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