pub struct ConstructionCombineResponse {
pub signed_transaction: String,
}Expand description
ConstructionCombineResponse : ConstructionCombineResponse is returned by /construction/combine. The network payload will be sent directly to the construction/submit endpoint.
Fields§
§signed_transaction: StringImplementations§
Source§impl ConstructionCombineResponse
impl ConstructionCombineResponse
Sourcepub fn new(signed_transaction: String) -> ConstructionCombineResponse
pub fn new(signed_transaction: String) -> ConstructionCombineResponse
ConstructionCombineResponse is returned by /construction/combine. The network payload will be sent directly to the construction/submit endpoint.
Trait Implementations§
Source§impl Clone for ConstructionCombineResponse
impl Clone for ConstructionCombineResponse
Source§fn clone(&self) -> ConstructionCombineResponse
fn clone(&self) -> ConstructionCombineResponse
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 ConstructionCombineResponse
impl Debug for ConstructionCombineResponse
Source§impl Default for ConstructionCombineResponse
impl Default for ConstructionCombineResponse
Source§fn default() -> ConstructionCombineResponse
fn default() -> ConstructionCombineResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConstructionCombineResponse
impl<'de> Deserialize<'de> for ConstructionCombineResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConstructionCombineResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConstructionCombineResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ConstructionCombineResponse
impl Serialize for ConstructionCombineResponse
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 ConstructionCombineResponse
impl StructuralPartialEq for ConstructionCombineResponse
Auto Trait Implementations§
impl Freeze for ConstructionCombineResponse
impl RefUnwindSafe for ConstructionCombineResponse
impl Send for ConstructionCombineResponse
impl Sync for ConstructionCombineResponse
impl Unpin for ConstructionCombineResponse
impl UnwindSafe for ConstructionCombineResponse
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