pub trait AppEvent {
// Provided method
fn installation(&self) -> Option<u64> { ... }
}Provided Methods§
Sourcefn installation(&self) -> Option<u64>
fn installation(&self) -> Option<u64>
Returns the installation ID for the event.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".