pub trait ICMP6SendClient {
// Required method
fn send_done(&self, result: Result<(), ErrorCode>);
}Expand description
A trait for a client of an ICMP6Sender.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".