Skip to main content

euv_core/event/name/
struct.rs

1use crate::*;
2
3/// 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.
7    pub(crate) input: String,
8}