[−][src]Struct tiny_cid::Cid
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: RawMultihash) -> Result<Self>[src]
Create a new CIDv0.
pub fn new_v1(codec: u64, hash: RawMultihash) -> Self[src]
Create a new CIDv1.
pub fn new(version: Version, codec: u64, hash: RawMultihash) -> 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) -> &RawMultihash[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::{SHA2_256, Multihash, MultihashDigest}; let mh = Multihash::new(SHA2_256, b"foo").unwrap(); let cid = Cid::new_v1(RAW, mh.to_raw().unwrap()); 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.
fn from_str(cid_str: &str) -> Result<Self>[src]
impl Hash for Cid[src]
fn hash<T: Hasher>(&self, state: &mut T)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
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.
fn try_from(bytes: &[u8]) -> Result<Self>[src]
impl<'_> TryFrom<&'_ str> for Cid[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(cid_str: &str) -> Result<Self>[src]
impl TryFrom<String> for Cid[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(cid_str: String) -> Result<Self>[src]
impl TryFrom<Vec<u8>> for Cid[src]
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,