Trait 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.

Implementations on Foreign Types§

Source§

impl ContentInfo for (u64, u64)

Source§

fn len(&self) -> u64

Source§

fn offset(&self) -> u64

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,