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<Cid<S>, Error>
pub const fn new( version: Version, codec: u64, hash: Multihash<S>, ) -> Result<Cid<S>, Error>
Create a new CID.
Sourcepub fn into_v1(self) -> Result<Cid<S>, Error>
pub fn into_v1(self) -> Result<Cid<S>, Error>
Convert a CIDv0 to a CIDv1. Returns unchanged if already a CIDv1.
Sourcepub fn read_bytes<R>(r: R) -> Result<Cid<S>, Error>where
R: Read,
pub fn read_bytes<R>(r: R) -> Result<Cid<S>, Error>where
R: Read,
Reads the bytes from a byte stream.
Sourcepub fn write_bytes<W>(&self, w: W) -> Result<usize, Error>where
W: Write,
pub fn write_bytes<W>(&self, w: W) -> Result<usize, Error>where
W: Write,
Writes the bytes to a byte stream, returns the number of bytes written.
Sourcepub fn encoded_len(&self) -> usize
pub fn encoded_len(&self) -> usize
Returns the length in bytes needed to encode this cid into bytes.
Sourcepub fn to_string_of_base(&self, base: Base) -> Result<String, Error>
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_codetable::{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<'de, const SIZE: usize> Deserialize<'de> for Cid<SIZE>
Deserialize a CID into a newtype struct.
impl<'de, const SIZE: usize> Deserialize<'de> for Cid<SIZE>
Deserialize a CID into a newtype struct.
Deserialize a CID that was serialized as a newtype struct, so that can be identified as a CID. Its corresponding Rust type would be:
struct $__private__serde__identifier__for__cid(serde_bytes::BytesBuf);Source§fn deserialize<D>(
deserializer: D,
) -> Result<Cid<SIZE>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<Cid<SIZE>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Source§impl<const S: usize> Ord for Cid<S>
impl<const S: usize> Ord for Cid<S>
Source§impl<const S: usize> PartialOrd for Cid<S>
impl<const S: usize> PartialOrd for Cid<S>
Source§impl<const SIZE: usize> Serialize for Cid<SIZE>
Serialize a CID into the Serde data model as enum.
impl<const SIZE: usize> Serialize for Cid<SIZE>
Serialize a CID into the Serde data model as enum.
Custom types are not supported by Serde, hence we map a CID into an enum that can be identified as a CID by implementations that support CIDs. The corresponding Rust type would be:
struct $__private__serde__identifier__for__cid(serde_bytes::BytesBuf);