pub enum ParsedTransaction {
Qfx(QfxTransaction),
}Variants§
Qfx(QfxTransaction)
Trait Implementations§
Source§impl Clone for ParsedTransaction
impl Clone for ParsedTransaction
Source§fn clone(&self) -> ParsedTransaction
fn clone(&self) -> ParsedTransaction
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 ParsedTransaction
impl Debug for ParsedTransaction
Source§impl<'de> Deserialize<'de> for ParsedTransaction
impl<'de> Deserialize<'de> for ParsedTransaction
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 Serialize for ParsedTransaction
impl Serialize for ParsedTransaction
Source§impl TryFrom<ParsedTransaction> for Transaction
impl TryFrom<ParsedTransaction> for Transaction
Source§type Error = StatementParseError
type Error = StatementParseError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for ParsedTransaction
impl RefUnwindSafe for ParsedTransaction
impl Send for ParsedTransaction
impl Sync for ParsedTransaction
impl Unpin for ParsedTransaction
impl UnsafeUnpin for ParsedTransaction
impl UnwindSafe for ParsedTransaction
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