Struct cid::CidGeneric [−][src]
pub struct CidGeneric<S: Size> { /* fields omitted */ }
Representation of a CID.
The generic is about the allocated size of the multihash.
Implementations
impl<S: Size> Cid<S>
[src]
impl<S: Size> Cid<S>
[src]pub fn new_v0(hash: Multihash<S>) -> Result<Self>
[src]
Create a new CIDv0.
pub fn new_v1(codec: u64, hash: Multihash<S>) -> Self
[src]
Create a new CIDv1.
pub fn new(version: Version, codec: u64, hash: Multihash<S>) -> 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<S>
[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 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: PartialOrd + Size> PartialOrd<Cid<S>> for Cid<S>
[src]
impl<S: PartialOrd + Size> PartialOrd<Cid<S>> for Cid<S>
[src]impl<S: Size> Copy for Cid<S> where
S::ArrayType: Copy,
[src]
S::ArrayType: Copy,
impl<S: Eq + Size> Eq for Cid<S>
[src]
impl<S: Size> StructuralEq for Cid<S>
[src]
impl<S: Size> StructuralPartialEq for Cid<S>
[src]
Auto Trait Implementations
impl<S> RefUnwindSafe for Cid<S> where
<S as ArrayLength<u8>>::ArrayType: RefUnwindSafe,
<S as ArrayLength<u8>>::ArrayType: RefUnwindSafe,
impl<S> Send for Cid<S>
impl<S> Sync for Cid<S>
impl<S> Unpin for Cid<S> where
<S as ArrayLength<u8>>::ArrayType: Unpin,
<S as ArrayLength<u8>>::ArrayType: Unpin,
impl<S> UnwindSafe for Cid<S> where
<S as ArrayLength<u8>>::ArrayType: UnwindSafe,
<S as ArrayLength<u8>>::ArrayType: UnwindSafe,