pub enum ReceiptType {
Show 13 variants
Call,
Return,
ReturnData,
Panic,
Revert,
Log,
LogData,
Transfer,
TransferOut,
ScriptResult,
MessageOut,
Mint,
Burn,
}Variants§
Call
Return
ReturnData
Panic
Revert
Log
LogData
Transfer
TransferOut
ScriptResult
MessageOut
Mint
Burn
Implementations§
Trait Implementations§
Source§impl Clone for ReceiptType
impl Clone for ReceiptType
Source§fn clone(&self) -> ReceiptType
fn clone(&self) -> ReceiptType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReceiptType
impl Debug for ReceiptType
Source§impl Default for ReceiptType
impl Default for ReceiptType
Source§fn default() -> ReceiptType
fn default() -> ReceiptType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReceiptType
impl<'de> Deserialize<'de> for ReceiptType
Source§fn deserialize<D>(deserializer: D) -> StdResult<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> StdResult<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromStr for ReceiptType
impl FromStr for ReceiptType
Source§impl Hex for ReceiptType
impl Hex for ReceiptType
fn encode_hex(&self) -> String
fn decode_hex(hex: &str) -> Result<Self>
fn encode_hex_with_quotes(&self) -> String
Source§impl PartialEq for ReceiptType
impl PartialEq for ReceiptType
Source§impl Serialize for ReceiptType
impl Serialize for ReceiptType
impl Copy for ReceiptType
impl Eq for ReceiptType
impl StructuralPartialEq for ReceiptType
Auto Trait Implementations§
impl Freeze for ReceiptType
impl RefUnwindSafe for ReceiptType
impl Send for ReceiptType
impl Sync for ReceiptType
impl Unpin for ReceiptType
impl UnwindSafe for ReceiptType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more