pub enum FileCtrlEvent {
FileSelectionChanged,
FolderSelectionChanged,
FileActivated,
}Expand description
Events emitted by FileCtrl
Variants§
FileSelectionChanged
Emitted when a file selection changes
FolderSelectionChanged
Emitted when a folder selection changes
FileActivated
Emitted when a file is activated (typically by double-clicking)
Trait Implementations§
Source§impl Clone for FileCtrlEvent
impl Clone for FileCtrlEvent
Source§fn clone(&self) -> FileCtrlEvent
fn clone(&self) -> FileCtrlEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FileCtrlEvent
Source§impl Debug for FileCtrlEvent
impl Debug for FileCtrlEvent
impl Eq for FileCtrlEvent
Source§impl PartialEq for FileCtrlEvent
impl PartialEq for FileCtrlEvent
Source§fn eq(&self, other: &FileCtrlEvent) -> bool
fn eq(&self, other: &FileCtrlEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FileCtrlEvent
Auto Trait Implementations§
impl Freeze for FileCtrlEvent
impl RefUnwindSafe for FileCtrlEvent
impl Send for FileCtrlEvent
impl Sync for FileCtrlEvent
impl Unpin for FileCtrlEvent
impl UnsafeUnpin for FileCtrlEvent
impl UnwindSafe for FileCtrlEvent
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