pub trait RecordListItem<'a>: Sized {
    fn parse(tag: Tag, data: &'a [u8]) -> Option<Self>;
}
Expand description

A trait to parse item in RecordList.

Internal use only.

Required Methods

Parses raw data.

Implementors