pub enum SignedTx {
VersionedTransactionBytes(Vec<u8>),
WireTransactionBytes(Vec<u8>),
}Expand description
Signed transaction payload variants accepted by submit APIs.
Variants§
VersionedTransactionBytes(Vec<u8>)
Bincode-serialized VersionedTransaction bytes.
WireTransactionBytes(Vec<u8>)
Wire-format transaction bytes.
Trait Implementations§
impl Eq for SignedTx
impl StructuralPartialEq for SignedTx
Auto Trait Implementations§
impl Freeze for SignedTx
impl RefUnwindSafe for SignedTx
impl Send for SignedTx
impl Sync for SignedTx
impl Unpin for SignedTx
impl UnsafeUnpin for SignedTx
impl UnwindSafe for SignedTx
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