pub trait RtcpPacketWriterExt: RtcpPacketWriter {
    // Provided method
    fn write_into(&self, buf: &mut [u8]) -> Result<usize, RtcpWriteError> { ... }
}

Provided Methods§

source

fn write_into(&self, buf: &mut [u8]) -> Result<usize, RtcpWriteError>

Writes the Custom packet into buf.

The default implementation:

Implementors§