pub struct ConstructionCombineRequest {
pub network_identifier: NetworkIdentifier,
pub unsigned_transaction: String,
pub signatures: Vec<Signature>,
}Expand description
ConstructionCombineRequest : ConstructionCombineRequest is the input to the /construction/combine endpoint. It contains the unsigned transaction blob returned by /construction/payloads and all required signatures to create a network transaction.
Fields§
§network_identifier: NetworkIdentifier§unsigned_transaction: String§signatures: Vec<Signature>Implementations§
Source§impl ConstructionCombineRequest
impl ConstructionCombineRequest
Sourcepub fn new(
network_identifier: NetworkIdentifier,
unsigned_transaction: String,
signatures: Vec<Signature>,
) -> ConstructionCombineRequest
pub fn new( network_identifier: NetworkIdentifier, unsigned_transaction: String, signatures: Vec<Signature>, ) -> ConstructionCombineRequest
ConstructionCombineRequest is the input to the /construction/combine endpoint. It contains the unsigned transaction blob returned by /construction/payloads and all required signatures to create a network transaction.
Trait Implementations§
Source§impl Clone for ConstructionCombineRequest
impl Clone for ConstructionCombineRequest
Source§fn clone(&self) -> ConstructionCombineRequest
fn clone(&self) -> ConstructionCombineRequest
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 ConstructionCombineRequest
impl Debug for ConstructionCombineRequest
Source§impl Default for ConstructionCombineRequest
impl Default for ConstructionCombineRequest
Source§fn default() -> ConstructionCombineRequest
fn default() -> ConstructionCombineRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConstructionCombineRequest
impl<'de> Deserialize<'de> for ConstructionCombineRequest
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConstructionCombineRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConstructionCombineRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ConstructionCombineRequest
impl Serialize for ConstructionCombineRequest
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for ConstructionCombineRequest
impl StructuralPartialEq for ConstructionCombineRequest
Auto Trait Implementations§
impl Freeze for ConstructionCombineRequest
impl RefUnwindSafe for ConstructionCombineRequest
impl Send for ConstructionCombineRequest
impl Sync for ConstructionCombineRequest
impl Unpin for ConstructionCombineRequest
impl UnwindSafe for ConstructionCombineRequest
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