Struct cid::CidGeneric
source · pub struct CidGeneric<const S: usize> { /* private fields */ }
Expand description
Representation of a CID.
The generic is about the allocated size of the multihash.
Implementations§
source§impl<const S: usize> Cid<S>
impl<const S: usize> Cid<S>
sourcepub const fn new(
version: Version,
codec: u64,
hash: Multihash<S>
) -> Result<Self>
pub const fn new( version: Version, codec: u64, hash: Multihash<S> ) -> Result<Self>
Create a new CID.
sourcepub fn into_v1(self) -> Result<Self>
pub fn into_v1(self) -> Result<Self>
Convert a CIDv0 to a CIDv1. Returns unchanged if already a CIDv1.
sourcepub fn read_bytes<R: Read>(r: R) -> Result<Self>
pub fn read_bytes<R: Read>(r: R) -> Result<Self>
Reads the bytes from a byte stream.
sourcepub fn write_bytes<W: Write>(&self, w: W) -> Result<()>
pub fn write_bytes<W: Write>(&self, w: W) -> Result<()>
Writes the bytes to a byte stream.
sourcepub fn to_string_of_base(&self, base: Base) -> Result<String>
pub fn to_string_of_base(&self, base: Base) -> Result<String>
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§
source§impl<const S: usize> Ord for Cid<S>
impl<const S: usize> Ord for Cid<S>
source§impl<const S: usize> PartialEq<Cid<S>> for Cid<S>
impl<const S: usize> PartialEq<Cid<S>> for Cid<S>
source§impl<const S: usize> PartialOrd<Cid<S>> for Cid<S>
impl<const S: usize> PartialOrd<Cid<S>> for Cid<S>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl<const S: usize> Copy for Cid<S>
impl<const S: usize> Eq for Cid<S>
impl<const S: usize> StructuralEq for Cid<S>
impl<const S: usize> StructuralPartialEq for Cid<S>
Auto Trait Implementations§
impl<const S: usize> RefUnwindSafe for Cid<S>
impl<const S: usize> Send for Cid<S>
impl<const S: usize> Sync for Cid<S>
impl<const S: usize> Unpin for Cid<S>
impl<const S: usize> UnwindSafe for Cid<S>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more