Trait hff_std::ContentInfo

source ·
pub trait ContentInfo {
    // Required methods
    fn len(&self) -> u64;
    fn offset(&self) -> u64;
}
Expand description

Information about the metadata or chunk data contained within the source.

Required Methods§

source

fn len(&self) -> u64

Length of the data.

source

fn offset(&self) -> u64

Offset into the overall source.

Implementors§

source§

impl<'a, T> ContentInfo for ChunkView<'a, T>
where T: Debug,

source§

impl<'a, T> ContentInfo for TableView<'a, T>
where T: Debug,