pub trait DecodeBufferPeeker<Encoding, Value>where
Encoding: HasDecodeBufferType,{
// Required method
fn peek_decode_buffer<'a>(
buffer: &'a mut Encoding::DecodeBuffer<'_>,
) -> Option<&'a Value>;
}Required Methods§
fn peek_decode_buffer<'a>( buffer: &'a mut Encoding::DecodeBuffer<'_>, ) -> Option<&'a Value>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.