[][src]Struct libipld::block::Block

pub struct Block<S> { /* fields omitted */ }

Block

Implementations

impl<S: StoreParams> Block<S>[src]

pub fn new(cid: Cid, data: Vec<u8>) -> Result<Self>[src]

Creates a new block. Returns an error if the hash doesn't match the data.

pub fn new_unchecked(cid: Cid, data: Vec<u8>) -> Self[src]

Creates a new block without verifying the cid.

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

Returns the cid.

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

Returns the payload.

pub fn into_inner(self) -> (Cid, Vec<u8>)[src]

Returns the inner cid and data.

pub fn encode<CE: Codec, T: Encode<CE> + ?Sized>(
    codec: CE,
    hcode: S::Hashes,
    payload: &T
) -> Result<Self> where
    CE: Into<S::Codecs>, 
[src]

Encode a block.`

pub fn decode<CD: Codec, T: Decode<CD>>(&self) -> Result<T> where
    S::Codecs: Into<CD>, 
[src]

Decodes a block.

Example

Decoding to Ipld:

use libipld::block::Block;
use libipld::cbor::DagCborCodec;
use libipld::ipld::Ipld;
use libipld::multihash::Code;
use libipld::store::DefaultParams;

let block =
    Block::<DefaultParams>::encode(DagCborCodec, Code::Blake3_256, "Hello World!").unwrap();
let ipld = block.decode::<DagCborCodec, Ipld>().unwrap();

assert_eq!(ipld, Ipld::String("Hello World!".to_string()));

pub fn ipld(&self) -> Result<Ipld> where
    Ipld: Decode<S::Codecs>, 
[src]

Returns the decoded ipld.

pub fn references<E: Extend<Cid>>(&self, set: &mut E) -> Result<()> where
    Ipld: References<S::Codecs>, 
[src]

Returns the references.

Methods from Deref<Target = Cid>

pub fn version(&self) -> Version

Returns the cid version.

pub fn codec(&self) -> u64

Returns the cid codec.

pub fn hash(&self) -> &Multihash<S>

Returns the cid multihash.

pub fn write_bytes<W>(&self, w: W) -> Result<(), Error> where
    W: Write

Writes the bytes to a byte stream.

pub fn to_bytes(&self) -> Vec<u8, Global>

Returns the encoded bytes of the Cid.

pub fn to_string_of_base(&self, base: Base) -> Result<String, Error>

Convert CID into a multibase encoded string

Example

use cid::Cid;
use multibase::Base;
use multihash::{Code, MultihashDigest};

const RAW: u64 = 0x55;

let cid = Cid::new_v1(RAW, Code::Sha2_256.digest(b"foo"));
let encoded = cid.to_string_of_base(Base::Base64).unwrap();
assert_eq!(encoded, "mAVUSICwmtGto/8aP+ZtFPB0wQTQTQi1wZIO/oPmKXohiZueu");

Trait Implementations

impl<S> AsRef<[u8]> for Block<S>[src]

impl<S> AsRef<Cid<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>> for Block<S>[src]

impl<S> Borrow<Cid<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>> for Block<S>[src]

impl<S: Clone> Clone for Block<S>[src]

impl<S> Debug for Block<S>[src]

impl<S> Deref for Block<S>[src]

type Target = Cid

The resulting type after dereferencing.

impl<S> Eq for Block<S>[src]

impl<S> Hash for Block<S>[src]

impl<S> PartialEq<Block<S>> for Block<S>[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for Block<S> where
    S: RefUnwindSafe
[src]

impl<S> Send for Block<S> where
    S: Send
[src]

impl<S> Sync for Block<S> where
    S: Sync
[src]

impl<S> Unpin for Block<S> where
    S: Unpin
[src]

impl<S> UnwindSafe for Block<S> where
    S: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> References<RawCodec> for T[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.