pub struct TransactionEnvelope {
pub header: TransactionHeader,
pub body: Value,
pub signatures: Vec<TransactionSignature>,
}Expand description
Transaction envelope that matches TypeScript SDK structure
Fields§
§header: TransactionHeader§body: Value§signatures: Vec<TransactionSignature>Trait Implementations§
Source§impl Clone for TransactionEnvelope
impl Clone for TransactionEnvelope
Source§fn clone(&self) -> TransactionEnvelope
fn clone(&self) -> TransactionEnvelope
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 TransactionEnvelope
impl Debug for TransactionEnvelope
Source§impl<'de> Deserialize<'de> for TransactionEnvelope
impl<'de> Deserialize<'de> for TransactionEnvelope
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 TransactionEnvelope
impl PartialEq for TransactionEnvelope
Source§impl SampleGenerator for TransactionEnvelope
impl SampleGenerator for TransactionEnvelope
Source§fn generate_sample() -> Self
fn generate_sample() -> Self
Generate a safe sample instance suitable for roundtrip testing
Source§fn generate_samples() -> Vec<Self>
fn generate_samples() -> Vec<Self>
Generate multiple sample instances with different characteristics
Source§impl Serialize for TransactionEnvelope
impl Serialize for TransactionEnvelope
impl StructuralPartialEq for TransactionEnvelope
Auto Trait Implementations§
impl Freeze for TransactionEnvelope
impl RefUnwindSafe for TransactionEnvelope
impl Send for TransactionEnvelope
impl Sync for TransactionEnvelope
impl Unpin for TransactionEnvelope
impl UnsafeUnpin for TransactionEnvelope
impl UnwindSafe for TransactionEnvelope
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