pub enum InspectorAction {
Toggle,
Move,
Normal,
Overlay,
Accessibility,
Pick,
Previous,
Next,
DetailsUp,
DetailsDown,
Select(usize),
}Expand description
An inspector control, independent of the application’s actions.
Variants§
Toggle
Open or close the inspector.
Move
Drag the floating panel by its title bar.
Normal
Show the normal application.
Overlay
Show accessibility outlines.
Accessibility
Show only the accessibility representation.
Pick
Select a control by its screen bounds without activating it.
Previous
Select the previous accessible element.
Next
Select the next accessible element.
DetailsUp
Scroll the selected element’s properties toward the beginning.
DetailsDown
Scroll the selected element’s properties toward the end.
Select(usize)
Select an element at its reading-order index.
Trait Implementations§
Source§impl Clone for InspectorAction
impl Clone for InspectorAction
impl Copy for InspectorAction
Source§impl Debug for InspectorAction
impl Debug for InspectorAction
impl Eq for InspectorAction
Source§impl PartialEq for InspectorAction
impl PartialEq for InspectorAction
impl StructuralPartialEq for InspectorAction
Auto Trait Implementations§
impl Freeze for InspectorAction
impl RefUnwindSafe for InspectorAction
impl Send for InspectorAction
impl Sync for InspectorAction
impl Unpin for InspectorAction
impl UnsafeUnpin for InspectorAction
impl UnwindSafe for InspectorAction
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