fef 0.2.3

Rust implementation of a parser of the FEF format
Documentation
1
2
3
4
5
6
7
8
9
use crate::{
    common::traits::private::Sealed,
    v0::tokens::{error::MetadataTokenError, MetadataToken},
};

pub(crate) trait MetadataRecordObj: Sealed {
    fn token(&self) -> Result<MetadataToken, MetadataTokenError>;
    fn byte_length(&self) -> usize;
}