pub trait SocketControlMessageExtManual: Sealed + IsA<SocketControlMessage> + Sized {
    // Provided method
    fn serialize(&self, data: &mut [u8]) { ... }
}

Provided Methods§

source

fn serialize(&self, data: &mut [u8])

Converts the data in the message to bytes placed in the message.

data is guaranteed to have enough space to fit the size returned by SocketControlMessageExt::size() on this object.

Object Safety§

This trait is not object safe.

Implementors§