[−][src]Enum libipld_core::ipld::Ipld
Ipld
Variants
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.
Represents a sequence of bytes.
Represents a list.
Represents a map.
Link(Cid)Represents a link to an Ipld node.
Implementations
impl Ipld[src]
pub fn get<'a, T: Into<IpldIndex<'a>>>(
&self,
index: T
) -> Result<&Self, TypeError>[src]
&self,
index: T
) -> Result<&Self, TypeError>
Indexes into a ipld list or map.
pub fn iter(&self) -> IpldIter<'_>ⓘ[src]
Returns an iterator.
pub fn references(&self) -> HashSet<Cid>[src]
Returns the references to other blocks.
Trait Implementations
impl Clone for Ipld[src]
impl Debug for Ipld[src]
impl Decode<RawCodec> for Ipld[src]
impl Encode<RawCodec> for Ipld[src]
impl<'_> From<&'_ [u8]> for Ipld[src]
impl<'_> From<&'_ Cid> 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]>> for Ipld[src]
impl From<Cid> for Ipld[src]
impl From<String> for Ipld[src]
impl From<Vec<Ipld>> for Ipld[src]
impl From<Vec<u8>> 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 StructuralPartialEq for Ipld[src]
Auto Trait Implementations
impl RefUnwindSafe for Ipld
impl Send for Ipld
impl Sync for Ipld
impl Unpin for Ipld
impl UnwindSafe for Ipld
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, 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>,