[][src]Enum libipld::Ipld

pub enum Ipld {
    Null,
    Bool(bool),
    Integer(i128),
    Float(f64),
    String(String),
    Bytes(Vec<u8, Global>),
    List(Vec<Ipld, Global>),
    Map(BTreeMap<String, Ipld>),
    Link(Cid<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>),
}

Ipld

Variants

Null

Represents the absence of a value or the value undefined.

Bool(bool)

Represents a boolean value.

Integer(i128)

Represents an integer.

Float(f64)

Represents a floating point value.

String(String)

Represents an UTF-8 string.

Bytes(Vec<u8, Global>)

Represents a sequence of bytes.

List(Vec<Ipld, Global>)

Represents a list.

Represents a map.

Represents a link to an Ipld node.

Implementations

impl Ipld[src]

pub fn take<'a, T>(self, index: T) -> Result<Ipld, TypeError> where
    T: Into<IpldIndex<'a>>, 
[src]

Destructs an ipld list or map

pub fn get<'a, T>(&self, index: T) -> Result<&Ipld, TypeError> where
    T: Into<IpldIndex<'a>>, 
[src]

Indexes into an ipld list or map.

pub fn iter(&self) -> IpldIter<'_>

Notable traits for IpldIter<'a>

impl<'a> Iterator for IpldIter<'a> type Item = &'a Ipld;
[src]

Returns an iterator.

pub fn references<E>(&self, set: &mut E) where
    E: Extend<Cid<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>>, 
[src]

Returns the references to other blocks.

Trait Implementations

impl Clone for Ipld[src]

impl Debug for Ipld[src]

impl Decode<DagCborCodec> for Ipld[src]

impl Decode<DagJsonCodec> for Ipld[src]

impl Decode<DagPbCodec> for Ipld[src]

impl Decode<IpldCodec> for Ipld[src]

impl Decode<RawCodec> for Ipld[src]

impl Encode<DagCborCodec> for Ipld[src]

impl Encode<DagJsonCodec> for Ipld[src]

impl Encode<DagPbCodec> for Ipld[src]

impl Encode<IpldCodec> for Ipld[src]

impl Encode<RawCodec> for Ipld[src]

impl<'_> From<&'_ [u8]> for Ipld[src]

impl<'_> From<&'_ Cid<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>> for Ipld[src]

impl<'_> From<&'_ Ipld> for TypeErrorType[src]

impl<'_> From<&'_ str> for Ipld[src]

impl From<BTreeMap<String, Ipld>> for Ipld[src]

impl From<Box<[u8], Global>> for Ipld[src]

impl From<Cid<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>, B0>>> for Ipld[src]

impl From<Ipld> for TypeErrorType[src]

impl From<String> for Ipld[src]

impl From<Vec<Ipld, Global>> for Ipld[src]

impl From<Vec<u8, Global>> for Ipld[src]

impl From<bool> for Ipld[src]

impl From<f32> for Ipld[src]

impl From<f64> for Ipld[src]

impl From<i128> for Ipld[src]

impl From<i16> for Ipld[src]

impl From<i32> for Ipld[src]

impl From<i64> for Ipld[src]

impl From<i8> for Ipld[src]

impl From<isize> for Ipld[src]

impl From<u16> for Ipld[src]

impl From<u32> for Ipld[src]

impl From<u64> for Ipld[src]

impl From<u8> for Ipld[src]

impl From<usize> for Ipld[src]

impl PartialEq<Ipld> for Ipld[src]

impl References<DagCborCodec> for Ipld[src]

impl References<DagJsonCodec> for Ipld[src]

impl References<DagPbCodec> for Ipld[src]

impl References<IpldCodec> for Ipld[src]

impl StructuralPartialEq for Ipld[src]

impl TryReadCbor for Ipld[src]

Auto Trait Implementations

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> DagCbor for T where
    T: TryReadCbor + Encode<DagCborCodec> + Decode<DagCborCodec>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> References<RawCodec> for 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, 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.