pub enum ChainResultInfo {
None,
Solana(SOLFunctionResult),
Evm(EVMFunctionResult),
}
Variants§
Trait Implementations§
source§impl Clone for ChainResultInfo
impl Clone for ChainResultInfo
source§fn clone(&self) -> ChainResultInfo
fn clone(&self) -> ChainResultInfo
Returns a copy 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 ChainResultInfo
impl Debug for ChainResultInfo
source§impl Default for ChainResultInfo
impl Default for ChainResultInfo
source§fn default() -> ChainResultInfo
fn default() -> ChainResultInfo
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ChainResultInfo
impl<'de> Deserialize<'de> for ChainResultInfo
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<ChainResultInfo> for ChainResultInfo
impl PartialEq<ChainResultInfo> for ChainResultInfo
source§fn eq(&self, other: &ChainResultInfo) -> bool
fn eq(&self, other: &ChainResultInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ChainResultInfo
impl Serialize for ChainResultInfo
impl StructuralPartialEq for ChainResultInfo
Auto Trait Implementations§
impl RefUnwindSafe for ChainResultInfo
impl Send for ChainResultInfo
impl Sync for ChainResultInfo
impl Unpin for ChainResultInfo
impl UnwindSafe for ChainResultInfo
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