pub struct NodeGraphKeyboardInteraction {
pub nodes_focusable: bool,
pub edges_focusable: bool,
pub delete_key: NodeGraphDeleteKey,
pub nudge_step_mode: NodeGraphNudgeStepMode,
pub nudge_step_px: f32,
pub nudge_fast_step_px: f32,
pub disable_keyboard_a11y: bool,
}Expand description
Keyboard accessibility and nudge settings resolved for runtime use.
Fields§
§nodes_focusable: bool§edges_focusable: bool§delete_key: NodeGraphDeleteKey§nudge_step_mode: NodeGraphNudgeStepMode§nudge_step_px: f32§nudge_fast_step_px: f32§disable_keyboard_a11y: boolTrait Implementations§
Source§impl Clone for NodeGraphKeyboardInteraction
impl Clone for NodeGraphKeyboardInteraction
Source§fn clone(&self) -> NodeGraphKeyboardInteraction
fn clone(&self) -> NodeGraphKeyboardInteraction
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 NodeGraphKeyboardInteraction
Source§impl Debug for NodeGraphKeyboardInteraction
impl Debug for NodeGraphKeyboardInteraction
Source§impl PartialEq for NodeGraphKeyboardInteraction
impl PartialEq for NodeGraphKeyboardInteraction
Source§fn eq(&self, other: &NodeGraphKeyboardInteraction) -> bool
fn eq(&self, other: &NodeGraphKeyboardInteraction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NodeGraphKeyboardInteraction
Auto Trait Implementations§
impl Freeze for NodeGraphKeyboardInteraction
impl RefUnwindSafe for NodeGraphKeyboardInteraction
impl Send for NodeGraphKeyboardInteraction
impl Sync for NodeGraphKeyboardInteraction
impl Unpin for NodeGraphKeyboardInteraction
impl UnsafeUnpin for NodeGraphKeyboardInteraction
impl UnwindSafe for NodeGraphKeyboardInteraction
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