pub enum SendTransactionResponse {
Sent(SendTransactionSentResponse),
NotSent,
}
Variants§
Sent(SendTransactionSentResponse)
NotSent
Trait Implementations§
Source§impl Clone for SendTransactionResponse
impl Clone for SendTransactionResponse
Source§fn clone(&self) -> SendTransactionResponse
fn clone(&self) -> SendTransactionResponse
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 SendTransactionResponse
impl Debug for SendTransactionResponse
Source§impl<'de> Deserialize<'de> for SendTransactionResponse
impl<'de> Deserialize<'de> for SendTransactionResponse
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 Hash for SendTransactionResponse
impl Hash for SendTransactionResponse
Source§impl PartialEq for SendTransactionResponse
impl PartialEq for SendTransactionResponse
Source§impl Serialize for SendTransactionResponse
impl Serialize for SendTransactionResponse
impl Eq for SendTransactionResponse
impl StructuralPartialEq for SendTransactionResponse
Auto Trait Implementations§
impl Freeze for SendTransactionResponse
impl RefUnwindSafe for SendTransactionResponse
impl Send for SendTransactionResponse
impl Sync for SendTransactionResponse
impl Unpin for SendTransactionResponse
impl UnwindSafe for SendTransactionResponse
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