[][src]Struct tiny_cid::Cid

pub struct Cid { /* fields omitted */ }

Representation of a CID.

Usually you would use Cid instead, unless you have a custom Multihash code table

Implementations

impl Cid[src]

pub fn new_v0(hash: Multihash<U64>) -> Result<Self>[src]

Create a new CIDv0.

pub fn new_v1(codec: u64, hash: Multihash<U64>) -> Self[src]

Create a new CIDv1.

pub fn new(version: Version, codec: u64, hash: Multihash<U64>) -> Result<Self>[src]

Create a new CID.

pub fn version(&self) -> Version[src]

Returns the cid version.

pub fn codec(&self) -> u64[src]

Returns the cid codec.

pub fn hash(&self) -> &Multihash<U64>[src]

Returns the cid multihash.

pub fn read_bytes<R: Read>(r: R) -> Result<Self>[src]

Reads the bytes from a byte stream.

pub fn write_bytes<W: Write>(&self, w: W) -> Result<()>[src]

Writes the bytes to a byte stream.

pub fn to_bytes(&self) -> Vec<u8>[src]

Returns the encoded bytes of the Cid.

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

Convert CID into a multibase encoded string

Example

use tiny_cid::{RAW, Cid};
use multibase::Base;
use tiny_multihash::{Code, MultihashCode};

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

Trait Implementations

impl Clone for Cid[src]

impl Copy for Cid[src]

impl Debug for Cid[src]

impl Default for Cid[src]

impl Display for Cid[src]

impl Eq for Cid[src]

impl<'_> From<&'_ Cid> for Cid[src]

impl<'a> From<&'a Cid> for Cow<'a, Cid>[src]

impl From<Cid> for Vec<u8>[src]

impl From<Cid> for String[src]

impl<'a> From<Cid> for Cow<'a, Cid>[src]

impl FromStr for Cid[src]

type Err = Error

The associated error which can be returned from parsing.

impl Hash for Cid[src]

impl PartialEq<Cid> for Cid[src]

impl StructuralEq for Cid[src]

impl StructuralPartialEq for Cid[src]

impl<'_> TryFrom<&'_ [u8]> for Cid[src]

type Error = Error

The type returned in the event of a conversion error.

impl<'_> TryFrom<&'_ str> for Cid[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<String> for Cid[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Vec<u8>> for Cid[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Cid

impl Send for Cid

impl Sync for Cid

impl Unpin for Cid

impl UnwindSafe for Cid

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> 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> ToString for T where
    T: Display + ?Sized
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,