pub trait ObservabilityServiceHandler {
// Required method
fn interrupt(&self, server_end: ServerEnd<InterruptAttributor, Channel>);
}Expand description
A service handler for the ObservabilityService service.
Required Methods§
Sourcefn interrupt(&self, server_end: ServerEnd<InterruptAttributor, Channel>)
fn interrupt(&self, server_end: ServerEnd<InterruptAttributor, Channel>)
Handles an attempt to connect to the interrupt member.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".