pub struct RawTransactionForSigning {
pub sender: Vec<u8>,
pub sequence_number: u64,
pub payload: Vec<u8>,
pub max_gas_amount: u64,
pub gas_unit_price: u64,
pub expiration_timestamp_secs: u64,
pub chain_id: u8,
}Fields§
§sender: Vec<u8>§sequence_number: u64§payload: Vec<u8>§max_gas_amount: u64§gas_unit_price: u64§expiration_timestamp_secs: u64§chain_id: u8Trait Implementations§
Auto Trait Implementations§
impl Freeze for RawTransactionForSigning
impl RefUnwindSafe for RawTransactionForSigning
impl Send for RawTransactionForSigning
impl Sync for RawTransactionForSigning
impl Unpin for RawTransactionForSigning
impl UnwindSafe for RawTransactionForSigning
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