pub enum TxnType {
SignWithdraw(Vec<u8>),
SignMintCml(Vec<u8>),
SendWithdraw {
records: Vec<u8>,
signatures: Vec<u8>,
nonce: U256,
tsid: Tsid,
},
SendMintCml {
records: Vec<u8>,
signatures: Vec<u8>,
nonce: U256,
tsid: Tsid,
},
}
Variants§
Trait Implementations§
§impl<'de> Deserialize<'de> for TxnType
impl<'de> Deserialize<'de> for TxnType
§fn deserialize<__D>(
__deserializer: __D
) -> Result<TxnType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<TxnType, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Serialize for TxnType
impl Serialize for TxnType
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
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
Auto Trait Implementations§
impl RefUnwindSafe for TxnType
impl Send for TxnType
impl Sync for TxnType
impl Unpin for TxnType
impl UnwindSafe for TxnType
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