pub enum TransactionShape {
TransactionShapeAcsDelta(Value),
TransactionShapeLedgerEffects(Value),
TransactionShapeUnspecified(Value),
Unrecognized(Box<Unrecognized>),
}Variants§
TransactionShapeAcsDelta(Value)
TransactionShapeLedgerEffects(Value)
TransactionShapeUnspecified(Value)
Unrecognized(Box<Unrecognized>)
Trait Implementations§
Source§impl Clone for TransactionShape
impl Clone for TransactionShape
Source§fn clone(&self) -> TransactionShape
fn clone(&self) -> TransactionShape
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 TransactionShape
impl Debug for TransactionShape
Source§impl Default for TransactionShape
impl Default for TransactionShape
Source§impl<'de> Deserialize<'de> for TransactionShape
impl<'de> Deserialize<'de> for TransactionShape
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 for TransactionShape
impl PartialEq for TransactionShape
Source§impl Serialize for TransactionShape
impl Serialize for TransactionShape
impl StructuralPartialEq for TransactionShape
Auto Trait Implementations§
impl Freeze for TransactionShape
impl RefUnwindSafe for TransactionShape
impl Send for TransactionShape
impl Sync for TransactionShape
impl Unpin for TransactionShape
impl UnsafeUnpin for TransactionShape
impl UnwindSafe for TransactionShape
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