[][src]Trait ipfs_sqlite_block_store::Block

pub trait Block {
    type I: Iterator<Item = Cid>;
    pub fn cid(&self) -> &Cid;
pub fn data(&self) -> &[u8];
pub fn links(&self) -> Self::I; }

An ipfs block

Associated Types

type I: Iterator<Item = Cid>[src]

Loading content...

Required methods

pub fn cid(&self) -> &Cid[src]

pub fn data(&self) -> &[u8][src]

Loading content...

Implementors

impl Block for OwnedBlock[src]

type I = IntoIter<Cid>

Loading content...