pub enum Receipt {
Show 13 variants Call { id: ContractId, to: ContractId, amount: u64, asset_id: AssetId, gas: u64, param1: u64, param2: u64, pc: u64, is: u64, }, Return { id: ContractId, val: u64, pc: u64, is: u64, }, ReturnData { id: ContractId, ptr: u64, len: u64, digest: Bytes32, pc: u64, is: u64, data: Option<Vec<u8>>, }, Panic { id: ContractId, reason: PanicInstruction, pc: u64, is: u64, contract_id: Option<ContractId>, }, Revert { id: ContractId, ra: u64, pc: u64, is: u64, }, Log { id: ContractId, ra: u64, rb: u64, rc: u64, rd: u64, pc: u64, is: u64, }, LogData { id: ContractId, ra: u64, rb: u64, ptr: u64, len: u64, digest: Bytes32, pc: u64, is: u64, data: Option<Vec<u8>>, }, Transfer { id: ContractId, to: ContractId, amount: u64, asset_id: AssetId, pc: u64, is: u64, }, TransferOut { id: ContractId, to: Address, amount: u64, asset_id: AssetId, pc: u64, is: u64, }, ScriptResult { result: ScriptExecutionResult, gas_used: u64, }, MessageOut { sender: Address, recipient: Address, amount: u64, nonce: Nonce, len: u64, digest: Bytes32, data: Option<Vec<u8>>, }, Mint { sub_id: Bytes32, contract_id: ContractId, val: u64, pc: u64, is: u64, }, Burn { sub_id: Bytes32, contract_id: ContractId, val: u64, pc: u64, is: u64, },
}

Variants§

§

Call

Fields

§amount: u64
§asset_id: AssetId
§gas: u64
§param1: u64
§param2: u64
§pc: u64
§is: u64
§

Return

Fields

§val: u64
§pc: u64
§is: u64
§

ReturnData

Fields

§ptr: u64
§len: u64
§digest: Bytes32
§pc: u64
§is: u64
§data: Option<Vec<u8>>
§

Panic

Fields

§reason: PanicInstruction
§pc: u64
§is: u64
§contract_id: Option<ContractId>
§

Revert

Fields

§ra: u64
§pc: u64
§is: u64
§

Log

Fields

§ra: u64
§rb: u64
§rc: u64
§rd: u64
§pc: u64
§is: u64
§

LogData

Fields

§ra: u64
§rb: u64
§ptr: u64
§len: u64
§digest: Bytes32
§pc: u64
§is: u64
§data: Option<Vec<u8>>
§

Transfer

Fields

§amount: u64
§asset_id: AssetId
§pc: u64
§is: u64
§

TransferOut

Fields

§amount: u64
§asset_id: AssetId
§pc: u64
§is: u64
§

ScriptResult

Fields

§gas_used: u64
§

MessageOut

Fields

§sender: Address
§recipient: Address
§amount: u64
§nonce: Nonce
§len: u64
§digest: Bytes32
§data: Option<Vec<u8>>
§

Mint

Fields

§sub_id: Bytes32
§contract_id: ContractId
§val: u64
§pc: u64
§is: u64
§

Burn

Fields

§sub_id: Bytes32
§contract_id: ContractId
§val: u64
§pc: u64
§is: u64

Implementations§

§

impl Receipt

pub const fn call( id: ContractId, to: ContractId, amount: u64, asset_id: AssetId, gas: u64, param1: u64, param2: u64, pc: u64, is: u64 ) -> Receipt

pub const fn ret(id: ContractId, val: u64, pc: u64, is: u64) -> Receipt

pub fn return_data( id: ContractId, ptr: u64, pc: u64, is: u64, data: Vec<u8> ) -> Receipt

pub const fn return_data_with_len( id: ContractId, ptr: u64, len: u64, digest: Bytes32, pc: u64, is: u64, data: Option<Vec<u8>> ) -> Receipt

pub const fn panic( id: ContractId, reason: PanicInstruction, pc: u64, is: u64 ) -> Receipt

pub fn with_panic_contract_id(self, _contract_id: Option<ContractId>) -> Receipt

pub const fn revert(id: ContractId, ra: u64, pc: u64, is: u64) -> Receipt

pub const fn log( id: ContractId, ra: u64, rb: u64, rc: u64, rd: u64, pc: u64, is: u64 ) -> Receipt

pub fn log_data( id: ContractId, ra: u64, rb: u64, ptr: u64, pc: u64, is: u64, data: Vec<u8> ) -> Receipt

pub const fn log_data_with_len( id: ContractId, ra: u64, rb: u64, ptr: u64, len: u64, digest: Bytes32, pc: u64, is: u64, data: Option<Vec<u8>> ) -> Receipt

pub const fn transfer( id: ContractId, to: ContractId, amount: u64, asset_id: AssetId, pc: u64, is: u64 ) -> Receipt

pub const fn transfer_out( id: ContractId, to: Address, amount: u64, asset_id: AssetId, pc: u64, is: u64 ) -> Receipt

pub const fn script_result( result: ScriptExecutionResult, gas_used: u64 ) -> Receipt

pub fn message_out( txid: &Bytes32, idx: u64, sender: Address, recipient: Address, amount: u64, data: Vec<u8> ) -> Receipt

pub const fn message_out_with_len( sender: Address, recipient: Address, amount: u64, nonce: Nonce, len: u64, digest: Bytes32, data: Option<Vec<u8>> ) -> Receipt

pub fn mint( sub_id: Bytes32, contract_id: ContractId, val: u64, pc: u64, is: u64 ) -> Receipt

pub fn burn( sub_id: Bytes32, contract_id: ContractId, val: u64, pc: u64, is: u64 ) -> Receipt

pub fn id(&self) -> Option<&ContractId>

pub const fn sub_id(&self) -> Option<&Bytes32>

pub const fn pc(&self) -> Option<u64>

pub const fn is(&self) -> Option<u64>

pub fn to(&self) -> Option<&ContractId>

pub const fn to_address(&self) -> Option<&Address>

pub const fn amount(&self) -> Option<u64>

pub const fn asset_id(&self) -> Option<&AssetId>

pub const fn gas(&self) -> Option<u64>

pub const fn param1(&self) -> Option<u64>

pub const fn param2(&self) -> Option<u64>

pub const fn val(&self) -> Option<u64>

pub const fn ptr(&self) -> Option<u64>

pub const fn len(&self) -> Option<u64>

pub const fn is_empty(&self) -> Option<bool>

pub const fn digest(&self) -> Option<&Bytes32>

pub fn data(&self) -> Option<&[u8]>

pub const fn reason(&self) -> Option<PanicInstruction>

pub const fn ra(&self) -> Option<u64>

pub const fn rb(&self) -> Option<u64>

pub const fn rc(&self) -> Option<u64>

pub const fn rd(&self) -> Option<u64>

pub const fn result(&self) -> Option<&ScriptExecutionResult>

pub const fn gas_used(&self) -> Option<u64>

pub fn message_id(&self) -> Option<MessageId>

pub const fn sender(&self) -> Option<&Address>

pub const fn recipient(&self) -> Option<&Address>

pub const fn nonce(&self) -> Option<&Nonce>

pub const fn contract_id(&self) -> Option<&ContractId>

Trait Implementations§

§

impl Clone for Receipt

§

fn clone(&self) -> Receipt

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for Receipt

§

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

Formats the value using the given formatter. Read more
§

impl Deserializable for Receipt

§

fn from_bytes(bytes: &[u8]) -> Result<Receipt, Error>

Deserialization from variable length slices of bytes.
§

impl<'de> Deserialize<'de> for Receipt

§

fn deserialize<__D>( __deserializer: __D ) -> Result<Receipt, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
§

impl Hash for Receipt

§

fn hash<__H>(&self, __state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl PartialEq for Receipt

§

fn eq(&self, other: &Receipt) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Read for Receipt

§

fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error>

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more
1.36.0 · source§

fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>

Like read, except that it reads into a slice of buffers. Read more
source§

fn is_read_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Reader has an efficient read_vectored implementation. Read more
1.0.0 · source§

fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>

Read all bytes until EOF in this source, placing them into buf. Read more
1.0.0 · source§

fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>

Read all bytes until EOF in this source, appending them to buf. Read more
1.6.0 · source§

fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>

Read the exact number of bytes required to fill buf. Read more
source§

fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>

🔬This is a nightly-only experimental API. (read_buf)
Pull some bytes from this source into the specified buffer. Read more
source§

fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>

🔬This is a nightly-only experimental API. (read_buf)
Read the exact number of bytes required to fill cursor. Read more
1.0.0 · source§

fn by_ref(&mut self) -> &mut Self
where Self: Sized,

Creates a “by reference” adaptor for this instance of Read. Read more
1.0.0 · source§

fn bytes(self) -> Bytes<Self>
where Self: Sized,

Transforms this Read instance to an Iterator over its bytes. Read more
1.0.0 · source§

fn chain<R>(self, next: R) -> Chain<Self, R>
where R: Read, Self: Sized,

Creates an adapter which will chain this stream with another. Read more
1.0.0 · source§

fn take(self, limit: u64) -> Take<Self>
where Self: Sized,

Creates an adapter which will read at most limit bytes from it. Read more
§

impl Serialize for Receipt

§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
§

impl SizedBytes for Receipt

§

fn serialized_size(&self) -> usize

Return the expected serialized size for an instance of the type.
§

impl Write for Receipt

§

fn write(&mut self, full_buf: &[u8]) -> Result<usize, Error>

Write a buffer into this writer, returning how many bytes were written. Read more
§

fn flush(&mut self) -> Result<(), Error>

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
1.36.0 · source§

fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error>

Like write, except that it writes from a slice of buffers. Read more
source§

fn is_write_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Writer has an efficient write_vectored implementation. Read more
1.0.0 · source§

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

Attempts to write an entire buffer into this writer. Read more
source§

fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>

🔬This is a nightly-only experimental API. (write_all_vectored)
Attempts to write multiple buffers into this writer. Read more
1.0.0 · source§

fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<(), Error>

Writes a formatted string into this writer, returning any error encountered. Read more
1.0.0 · source§

fn by_ref(&mut self) -> &mut Self
where Self: Sized,

Creates a “by reference” adapter for this instance of Write. Read more
§

impl Eq for Receipt

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> AnyDebug for T
where T: Any + Debug,

§

fn as_any_ref(&self) -> &(dyn Any + 'static)

Returns a reference to the underlying type as Any.
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
§

impl<T> Conv for T

§

fn conv<T>(self) -> T
where Self: Into<T>,

Converts self into T using Into<T>. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<T> FmtForward for T

§

fn fmt_binary(self) -> FmtBinary<Self>
where Self: Binary,

Causes self to use its Binary implementation when Debug-formatted.
§

fn fmt_display(self) -> FmtDisplay<Self>
where Self: Display,

Causes self to use its Display implementation when Debug-formatted.
§

fn fmt_lower_exp(self) -> FmtLowerExp<Self>
where Self: LowerExp,

Causes self to use its LowerExp implementation when Debug-formatted.
§

fn fmt_lower_hex(self) -> FmtLowerHex<Self>
where Self: LowerHex,

Causes self to use its LowerHex implementation when Debug-formatted.
§

fn fmt_octal(self) -> FmtOctal<Self>
where Self: Octal,

Causes self to use its Octal implementation when Debug-formatted.
§

fn fmt_pointer(self) -> FmtPointer<Self>
where Self: Pointer,

Causes self to use its Pointer implementation when Debug-formatted.
§

fn fmt_upper_exp(self) -> FmtUpperExp<Self>
where Self: UpperExp,

Causes self to use its UpperExp implementation when Debug-formatted.
§

fn fmt_upper_hex(self) -> FmtUpperHex<Self>
where Self: UpperHex,

Causes self to use its UpperHex implementation when Debug-formatted.
§

fn fmt_list(self) -> FmtList<Self>
where &'a Self: for<'a> IntoIterator,

Formats each item in a sequence. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where 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> Pipe for T
where T: ?Sized,

§

fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
where Self: Sized,

Pipes by value. This is generally the method you want to use. Read more
§

fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R
where R: 'a,

Borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R
where R: 'a,

Mutably borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
where Self: Borrow<B>, B: 'a + ?Sized, R: 'a,

Borrows self, then passes self.borrow() into the pipe function. Read more
§

fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> R
where Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
§

fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
where Self: AsRef<U>, U: 'a + ?Sized, R: 'a,

Borrows self, then passes self.as_ref() into the pipe function.
§

fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
where Self: AsMut<U>, U: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.as_mut() into the pipe function.
§

fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
where Self: Deref<Target = T>, T: 'a + ?Sized, R: 'a,

Borrows self, then passes self.deref() into the pipe function.
§

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R ) -> R
where Self: DerefMut<Target = T> + Deref, T: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.deref_mut() into the pipe function.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
§

impl<T> SerializableVec for T
where T: SizedBytes + Read,

§

fn to_bytes(&mut self) -> Vec<u8>

Create a variable size vector of bytes from the instance.
§

impl<T> StorageAsMut for T

§

fn storage<Type>(&mut self) -> StorageMut<'_, Self, Type>
where Type: Mappable,

§

fn storage_as_mut<Type>(&mut self) -> StorageMut<'_, Self, Type>
where Type: Mappable,

§

impl<T> StorageAsRef for T

§

fn storage<Type>(&self) -> StorageRef<'_, Self, Type>
where Type: Mappable,

§

fn storage_as_ref<Type>(&self) -> StorageRef<'_, Self, Type>
where Type: Mappable,

§

impl<T> Tap for T

§

fn tap(self, func: impl FnOnce(&Self)) -> Self

Immutable access to a value. Read more
§

fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self

Mutable access to a value. Read more
§

fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Immutable access to the Borrow<B> of a value. Read more
§

fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Mutable access to the BorrowMut<B> of a value. Read more
§

fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Immutable access to the AsRef<R> view of a value. Read more
§

fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Mutable access to the AsMut<R> view of a value. Read more
§

fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Immutable access to the Deref::Target of a value. Read more
§

fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Mutable access to the Deref::Target of a value. Read more
§

fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self

Calls .tap() only in debug builds, and is erased in release builds.
§

fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self

Calls .tap_mut() only in debug builds, and is erased in release builds.
§

fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Calls .tap_borrow() only in debug builds, and is erased in release builds.
§

fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Calls .tap_borrow_mut() only in debug builds, and is erased in release builds.
§

fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Calls .tap_ref() only in debug builds, and is erased in release builds.
§

fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Calls .tap_ref_mut() only in debug builds, and is erased in release builds.
§

fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Calls .tap_deref() only in debug builds, and is erased in release builds.
§

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T> TryConv for T

§

fn try_conv<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Attempts to convert self into T using TryInto<T>. Read more
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<W> Writer for W
where W: Write,

§

fn write(&mut self, slice: &[u8]) -> Result<(), Error>

Write the given DER-encoded bytes as output.
§

fn write_byte(&mut self, byte: u8) -> Result<(), Error>

Write a single byte.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,