1use crate::*;
23/// Error type returned when parsing a string into `NativeEventName` fails.
4#[derive(Clone, Data, Debug, Eq, New, PartialEq)]
5pub struct ParseNativeEventNameError {
6/// The input string that could not be parsed.
7pub(crate) input: String,
8}