pub trait RecvMsgOutView {
// Required method
fn parse_with<R>(
raw: &[u8],
msghdr: &msghdr,
f: impl FnOnce(&[u8], &[u8]) -> R,
) -> Option<R>;
}Required Methods§
fn parse_with<R>( raw: &[u8], msghdr: &msghdr, f: impl FnOnce(&[u8], &[u8]) -> R, ) -> Option<R>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".