//! Defines the core BusEvent trait and automatic implementation
use ;
/// Marker trait for events that can be sent/received via the event bus
///
/// Normally you don't need to implement this manually - use the
/// `#[derive(ExternalBusEvent)]` macro instead.
// Automatically implement BusEvent for any type that meets the requirements