pub enum Outcome {
Clicked(String),
ClickCustom(Box<dyn CloneableAny>),
Changed(String),
DragDropReleased(String, usize, usize),
Focused(String),
Nothing,
}
Expand description
The result of a Panel handling an event
Variants§
Clicked(String)
An action was done
ClickCustom(Box<dyn CloneableAny>)
An action was done, with custom data. The caller must cast to the proper type.
Changed(String)
A dropdown, checkbox, spinner, etc changed values. The name of the changed widget is returned, but not the value, since its type is generic.
DragDropReleased(String, usize, usize)
On a DragDrop widget, a member was clicked on and released. Its position may have changed. (name, orig_idx, new_idx)
Focused(String)
Some named widget currently holds focus
Nothing
Nothing happened
Implementations§
Auto Trait Implementations§
impl Freeze for Outcome
impl !RefUnwindSafe for Outcome
impl !Send for Outcome
impl !Sync for Outcome
impl Unpin for Outcome
impl !UnwindSafe for Outcome
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.