1 2 3 4 5 6 7 8 9
use crate::types::{Action, Uuid}; #[derive(Debug, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] #[non_exhaustive] pub struct Notification<R> { pub query_id: Uuid, pub action: Action, pub data: R, }