Struct bitcoind_json_rpc_types::v20::SendRawTransaction
source · pub struct SendRawTransaction(pub String);Expand description
Result of JSON-RPC method sendrawtransaction.
sendrawtransaction “hexstring” ( allowhighfees )
Submits raw transaction (serialized, hex-encoded) to local node and network.
Also see createrawtransaction and signrawtransactionwithkey calls.
Arguments:
- hexstring (string, required) The hex string of the raw transaction
- allowhighfees (boolean, optional, default=false) Allow high fees
Tuple Fields§
§0: StringTrait Implementations§
source§impl Clone for SendRawTransaction
impl Clone for SendRawTransaction
source§fn clone(&self) -> SendRawTransaction
fn clone(&self) -> SendRawTransaction
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 SendRawTransaction
impl Debug for SendRawTransaction
source§impl<'de> Deserialize<'de> for SendRawTransaction
impl<'de> Deserialize<'de> for SendRawTransaction
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 SendRawTransaction
impl PartialEq for SendRawTransaction
source§fn eq(&self, other: &SendRawTransaction) -> bool
fn eq(&self, other: &SendRawTransaction) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for SendRawTransaction
impl Serialize for SendRawTransaction
source§impl TryFrom<SendRawTransaction> for SendRawTransaction
impl TryFrom<SendRawTransaction> for SendRawTransaction
§type Error = HexToArrayError
type Error = HexToArrayError
The type returned in the event of a conversion error.
impl StructuralPartialEq for SendRawTransaction
Auto Trait Implementations§
impl Freeze for SendRawTransaction
impl RefUnwindSafe for SendRawTransaction
impl Send for SendRawTransaction
impl Sync for SendRawTransaction
impl Unpin for SendRawTransaction
impl UnwindSafe for SendRawTransaction
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