diff options
Diffstat (limited to 'native/src/event.rs')
-rw-r--r-- | native/src/event.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/native/src/event.rs b/native/src/event.rs index 9c079151..0e86171e 100644 --- a/native/src/event.rs +++ b/native/src/event.rs @@ -20,19 +20,12 @@ pub enum Event { } /// The status of an [`Event`] after being processed. -/// -/// [`Event`]: enum.Event.html -/// [`UserInterface`]: ../struct.UserInterface.html #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum Status { /// The [`Event`] was **NOT** handled by any widget. - /// - /// [`Event`]: enum.Event.html Ignored, /// The [`Event`] was handled and processed by a widget. - /// - /// [`Event`]: enum.Event.html Captured, } |