pub trait MatchContext {
// Required methods
fn endpt(&self) -> Option<u16>;
fn cluster(&self) -> Option<u32>;
}Expand description
A context super-type that is passed to the handler when bumping a dataver
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".