pub enum KeyboardActionOutcome {
DeleteSelection {
action: KeyboardDeleteAction,
dispatch: DispatchOutcome,
},
NudgeSelection {
request: NodeNudgeRequest,
dispatch: DispatchOutcome,
},
}Expand description
Outcome returned by NodeGraphStore::apply_keyboard_intent.
Variants§
Implementations§
Source§impl KeyboardActionOutcome
impl KeyboardActionOutcome
pub fn dispatch(&self) -> &DispatchOutcome
Trait Implementations§
Source§impl Clone for KeyboardActionOutcome
impl Clone for KeyboardActionOutcome
Source§fn clone(&self) -> KeyboardActionOutcome
fn clone(&self) -> KeyboardActionOutcome
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 moreAuto Trait Implementations§
impl Freeze for KeyboardActionOutcome
impl RefUnwindSafe for KeyboardActionOutcome
impl Send for KeyboardActionOutcome
impl Sync for KeyboardActionOutcome
impl Unpin for KeyboardActionOutcome
impl UnsafeUnpin for KeyboardActionOutcome
impl UnwindSafe for KeyboardActionOutcome
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