pub struct AbiDigester { /* private fields */ }

Implementations§

source§

impl AbiDigester

source

pub fn create() -> Self

source

pub fn create_new(&self) -> Self

source

pub fn create_new_opaque(&self, top_scope: &str) -> Self

source

pub fn create_child(&self) -> Result<Self, DigestError>

source

pub fn create_enum_child(&self) -> Result<Self, DigestError>

source

pub fn digest_data<T: ?Sized + Serialize>(&mut self, value: &T) -> DigestResult

source

pub fn update(&mut self, strs: &[&str])

source

pub fn update_with_type<T: ?Sized>(&mut self, label: &str)

source

pub fn update_with_string(&mut self, label: String)

source

pub fn finalize(self) -> Hash

Trait Implementations§

source§

impl Debug for AbiDigester

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl SerializeMap for AbiDigester

§

type Ok = AbiDigester

Must match the Ok type of our Serializer.
§

type Error = DigestError

Must match the Error type of our Serializer.
source§

fn serialize_key<T: ?Sized + Serialize>( &mut self, key: &T ) -> Result<(), DigestError>

Serialize a map key. Read more
source§

fn serialize_value<T: ?Sized + Serialize>( &mut self, value: &T ) -> Result<(), DigestError>

Serialize a map value. Read more
source§

fn end(self) -> DigestResult

Finish serializing a map.
source§

fn serialize_entry<K, V>( &mut self, key: &K, value: &V ) -> Result<(), Self::Error>where K: Serialize + ?Sized, V: Serialize + ?Sized,

Serialize a map entry consisting of a key and a value. Read more
source§

impl SerializeSeq for AbiDigester

§

type Ok = AbiDigester

Must match the Ok type of our Serializer.
§

type Error = DigestError

Must match the Error type of our Serializer.
source§

fn serialize_element<T: ?Sized + Serialize>( &mut self, data: &T ) -> Result<(), DigestError>

Serialize a sequence element.
source§

fn end(self) -> DigestResult

Finish serializing a sequence.
source§

impl SerializeStruct for AbiDigester

§

type Ok = AbiDigester

Must match the Ok type of our Serializer.
§

type Error = DigestError

Must match the Error type of our Serializer.
source§

fn serialize_field<T: ?Sized + Serialize>( &mut self, key: &'static str, data: &T ) -> Result<(), DigestError>

Serialize a struct field.
source§

fn end(self) -> DigestResult

Finish serializing a struct.
source§

fn skip_field(&mut self, key: &'static str) -> Result<(), Self::Error>

Indicate that a struct field has been skipped.
source§

impl SerializeStructVariant for AbiDigester

§

type Ok = AbiDigester

Must match the Ok type of our Serializer.
§

type Error = DigestError

Must match the Error type of our Serializer.
source§

fn serialize_field<T: ?Sized + Serialize>( &mut self, key: &'static str, data: &T ) -> Result<(), DigestError>

Serialize a struct variant field.
source§

fn end(self) -> DigestResult

Finish serializing a struct variant.
source§

fn skip_field(&mut self, key: &'static str) -> Result<(), Self::Error>

Indicate that a struct variant field has been skipped.
source§

impl SerializeTuple for AbiDigester

§

type Ok = AbiDigester

Must match the Ok type of our Serializer.
§

type Error = DigestError

Must match the Error type of our Serializer.
source§

fn serialize_element<T: ?Sized + Serialize>( &mut self, data: &T ) -> Result<(), DigestError>

Serialize a tuple element.
source§

fn end(self) -> DigestResult

Finish serializing a tuple.
source§

impl SerializeTupleStruct for AbiDigester

§

type Ok = AbiDigester

Must match the Ok type of our Serializer.
§

type Error = DigestError

Must match the Error type of our Serializer.
source§

fn serialize_field<T: ?Sized + Serialize>( &mut self, data: &T ) -> Result<(), DigestError>

Serialize a tuple struct field.
source§

fn end(self) -> DigestResult

Finish serializing a tuple struct.
source§

impl SerializeTupleVariant for AbiDigester

§

type Ok = AbiDigester

Must match the Ok type of our Serializer.
§

type Error = DigestError

Must match the Error type of our Serializer.
source§

fn serialize_field<T: ?Sized + Serialize>( &mut self, data: &T ) -> Result<(), DigestError>

Serialize a tuple variant field.
source§

fn end(self) -> DigestResult

Finish serializing a tuple variant.
source§

impl Serializer for AbiDigester

§

type Ok = AbiDigester

The output type produced by this Serializer during successful serialization. Most serializers that produce text or binary output should set Ok = () and serialize into an io::Write or buffer contained within the Serializer instance. Serializers that build in-memory data structures may be simplified by using Ok to propagate the data structure around.
§

type Error = DigestError

The error type when some error occurs during serialization.
§

type SerializeSeq = AbiDigester

Type returned from serialize_seq for serializing the content of the sequence.
§

type SerializeTuple = AbiDigester

Type returned from serialize_tuple for serializing the content of the tuple.
§

type SerializeTupleStruct = AbiDigester

Type returned from serialize_tuple_struct for serializing the content of the tuple struct.
§

type SerializeTupleVariant = AbiDigester

Type returned from serialize_tuple_variant for serializing the content of the tuple variant.
§

type SerializeMap = AbiDigester

Type returned from serialize_map for serializing the content of the map.
§

type SerializeStruct = AbiDigester

Type returned from serialize_struct for serializing the content of the struct.
§

type SerializeStructVariant = AbiDigester

Type returned from serialize_struct_variant for serializing the content of the struct variant.
source§

fn serialize_bool(self, _data: bool) -> DigestResult

Serialize a bool value. Read more
source§

fn serialize_i8(self, _data: i8) -> DigestResult

Serialize an i8 value. Read more
source§

fn serialize_i16(self, _data: i16) -> DigestResult

Serialize an i16 value. Read more
source§

fn serialize_i32(self, _data: i32) -> DigestResult

Serialize an i32 value. Read more
source§

fn serialize_i64(self, _data: i64) -> DigestResult

Serialize an i64 value. Read more
source§

fn serialize_i128(self, _data: i128) -> DigestResult

Serialize an i128 value. Read more
source§

fn serialize_u8(self, _data: u8) -> DigestResult

Serialize a u8 value. Read more
source§

fn serialize_u16(self, _data: u16) -> DigestResult

Serialize a u16 value. Read more
source§

fn serialize_u32(self, _data: u32) -> DigestResult

Serialize a u32 value. Read more
source§

fn serialize_u64(self, _data: u64) -> DigestResult

Serialize a u64 value. Read more
source§

fn serialize_u128(self, _data: u128) -> DigestResult

Serialize a u128 value. Read more
source§

fn serialize_f32(self, _data: f32) -> DigestResult

Serialize an f32 value. Read more
source§

fn serialize_f64(self, _data: f64) -> DigestResult

Serialize an f64 value. Read more
source§

fn serialize_char(self, _data: char) -> DigestResult

Serialize a character. Read more
source§

fn serialize_str(self, _data: &str) -> DigestResult

Serialize a &str. Read more
source§

fn serialize_unit(self) -> DigestResult

Serialize a () value. Read more
source§

fn serialize_bytes(self, v: &[u8]) -> DigestResult

Serialize a chunk of raw byte data. Read more
source§

fn serialize_none(self) -> DigestResult

Serialize a None value. Read more
source§

fn serialize_some<T>(self, v: &T) -> DigestResultwhere T: ?Sized + Serialize,

Serialize a Some(T) value. Read more
source§

fn serialize_unit_struct(self, name: &'static str) -> DigestResult

Serialize a unit struct like struct Unit or PhantomData<T>. Read more
source§

fn serialize_unit_variant( self, _name: &'static str, index: u32, variant: &'static str ) -> DigestResult

Serialize a unit variant like E::A in enum E { A, B }. Read more
source§

fn serialize_newtype_struct<T>(self, name: &'static str, v: &T) -> DigestResultwhere T: ?Sized + Serialize,

Serialize a newtype struct like struct Millimeters(u8). Read more
source§

fn serialize_newtype_variant<T>( self, _name: &'static str, i: u32, variant: &'static str, v: &T ) -> DigestResultwhere T: ?Sized + Serialize,

Serialize a newtype variant like E::N in enum E { N(u8) }. Read more
source§

fn serialize_seq(self, len: Option<usize>) -> DigestResult

Begin to serialize a variably sized sequence. This call must be followed by zero or more calls to serialize_element, then a call to end. Read more
source§

fn serialize_tuple(self, len: usize) -> DigestResult

Begin to serialize a statically sized sequence whose length will be known at deserialization time without looking at the serialized data. This call must be followed by zero or more calls to serialize_element, then a call to end. Read more
source§

fn serialize_tuple_struct(self, name: &'static str, len: usize) -> DigestResult

Begin to serialize a tuple struct like struct Rgb(u8, u8, u8). This call must be followed by zero or more calls to serialize_field, then a call to end. Read more
source§

fn serialize_tuple_variant( self, _name: &'static str, i: u32, variant: &'static str, len: usize ) -> DigestResult

Begin to serialize a tuple variant like E::T in enum E { T(u8, u8) }. This call must be followed by zero or more calls to serialize_field, then a call to end. Read more
source§

fn serialize_map(self, len: Option<usize>) -> DigestResult

Begin to serialize a map. This call must be followed by zero or more calls to serialize_key and serialize_value, then a call to end. Read more
source§

fn serialize_struct(self, name: &'static str, len: usize) -> DigestResult

Begin to serialize a struct like struct Rgb { r: u8, g: u8, b: u8 }. This call must be followed by zero or more calls to serialize_field, then a call to end. Read more
source§

fn serialize_struct_variant( self, _name: &'static str, i: u32, variant: &'static str, len: usize ) -> DigestResult

Begin to serialize a struct variant like E::S in enum E { S { r: u8, g: u8, b: u8 } }. This call must be followed by zero or more calls to serialize_field, then a call to end. Read more
source§

fn collect_seq<I>(self, iter: I) -> Result<Self::Ok, Self::Error>where I: IntoIterator, <I as IntoIterator>::Item: Serialize,

Collect an iterator as a sequence. Read more
source§

fn collect_map<K, V, I>(self, iter: I) -> Result<Self::Ok, Self::Error>where K: Serialize, V: Serialize, I: IntoIterator<Item = (K, V)>,

Collect an iterator as a map. Read more
source§

fn collect_str<T>(self, value: &T) -> Result<Self::Ok, Self::Error>where T: Display + ?Sized,

Serialize a string produced by an implementation of Display. Read more
source§

fn is_human_readable(&self) -> bool

Determine whether Serialize implementations should serialize in human-readable form. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> AbiExample for T

source§

default fn example() -> T

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.