Trait FrameMeta

Source
pub trait FrameMeta {
    // Required methods
    fn frame_header_len() -> usize;
    fn frame_match(data: &[u8]) -> bool;
    fn frame_totol_len(data: &[u8]) -> usize;
}

Required Methods§

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.

Implementors§