pub struct RawTransaction {
pub raw: Bytes,
pub tx: Transaction,
}
Expand description
Raw bytes of a signed, but not yet sent transaction
Fields§
§raw: Bytes
Signed transaction as raw bytes
tx: Transaction
Transaction details
Trait Implementations§
Source§impl Clone for RawTransaction
impl Clone for RawTransaction
Source§fn clone(&self) -> RawTransaction
fn clone(&self) -> RawTransaction
Returns a copy 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 RawTransaction
impl Debug for RawTransaction
Source§impl Default for RawTransaction
impl Default for RawTransaction
Source§fn default() -> RawTransaction
fn default() -> RawTransaction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RawTransaction
impl<'de> Deserialize<'de> for RawTransaction
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 RawTransaction
impl PartialEq for RawTransaction
Source§impl Serialize for RawTransaction
impl Serialize for RawTransaction
impl StructuralPartialEq for RawTransaction
Auto Trait Implementations§
impl Freeze for RawTransaction
impl RefUnwindSafe for RawTransaction
impl Send for RawTransaction
impl Sync for RawTransaction
impl Unpin for RawTransaction
impl UnwindSafe for RawTransaction
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