Struct libipld_json::DagJsonCodec
source · [−]pub struct DagJsonCodec;Expand description
Json codec.
Trait Implementations
sourceimpl Clone for DagJsonCodec
impl Clone for DagJsonCodec
sourcefn clone(&self) -> DagJsonCodec
fn clone(&self) -> DagJsonCodec
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Codec for DagJsonCodec
impl Codec for DagJsonCodec
sourcefn encode<T>(&self, obj: &T) -> Result<Vec<u8, Global>, Error> where
T: Encode<Self> + ?Sized,
fn encode<T>(&self, obj: &T) -> Result<Vec<u8, Global>, Error> where
T: Encode<Self> + ?Sized,
Encodes an encodable type.
sourcefn decode<T>(&self, bytes: &[u8]) -> Result<T, Error> where
T: Decode<Self>,
fn decode<T>(&self, bytes: &[u8]) -> Result<T, Error> where
T: Decode<Self>,
Decodes a decodable type.
sourcefn references<T, E>(&self, bytes: &[u8], set: &mut E) -> Result<(), Error> where
T: References<Self>,
E: Extend<Cid<64>>,
fn references<T, E>(&self, bytes: &[u8], set: &mut E) -> Result<(), Error> where
T: References<Self>,
E: Extend<Cid<64>>,
Scrapes the references.
sourceimpl Debug for DagJsonCodec
impl Debug for DagJsonCodec
sourceimpl Decode<DagJsonCodec> for Ipld
impl Decode<DagJsonCodec> for Ipld
sourceimpl Encode<DagJsonCodec> for Ipld
impl Encode<DagJsonCodec> for Ipld
sourceimpl From<DagJsonCodec> for u64
impl From<DagJsonCodec> for u64
sourcefn from(_: DagJsonCodec) -> Self
fn from(_: DagJsonCodec) -> Self
Converts to this type from the input type.
sourceimpl Ord for DagJsonCodec
impl Ord for DagJsonCodec
sourcefn cmp(&self, other: &DagJsonCodec) -> Ordering
fn cmp(&self, other: &DagJsonCodec) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<DagJsonCodec> for DagJsonCodec
impl PartialEq<DagJsonCodec> for DagJsonCodec
sourcefn eq(&self, other: &DagJsonCodec) -> bool
fn eq(&self, other: &DagJsonCodec) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl PartialOrd<DagJsonCodec> for DagJsonCodec
impl PartialOrd<DagJsonCodec> for DagJsonCodec
sourcefn partial_cmp(&self, other: &DagJsonCodec) -> Option<Ordering>
fn partial_cmp(&self, other: &DagJsonCodec) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn 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 more
sourceimpl References<DagJsonCodec> for Ipld
impl References<DagJsonCodec> for Ipld
sourceimpl TryFrom<u64> for DagJsonCodec
impl TryFrom<u64> for DagJsonCodec
impl Copy for DagJsonCodec
impl Eq for DagJsonCodec
impl StructuralEq for DagJsonCodec
impl StructuralPartialEq for DagJsonCodec
Auto Trait Implementations
impl RefUnwindSafe for DagJsonCodec
impl Send for DagJsonCodec
impl Sync for DagJsonCodec
impl Unpin for DagJsonCodec
impl UnwindSafe for DagJsonCodec
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more