pub struct SubmitResponse {
pub engine_result: String,
pub tx_blob: Option<String>,
pub tx_json: Option<Transaction>,
}
Fields§
§engine_result: String
§tx_blob: Option<String>
Binary representation of the fully-qualified, signed transaction, as hex
tx_json: Option<Transaction>
JSON specification of the complete transaction as signed, including any fields that were automatically filled in
Trait Implementations§
Source§impl Debug for SubmitResponse
impl Debug for SubmitResponse
Source§impl Default for SubmitResponse
impl Default for SubmitResponse
Source§fn default() -> SubmitResponse
fn default() -> SubmitResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SubmitResponse
impl<'de> Deserialize<'de> for SubmitResponse
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 SubmitResponse
impl PartialEq for SubmitResponse
Source§impl Serialize for SubmitResponse
impl Serialize for SubmitResponse
impl Eq for SubmitResponse
impl StructuralPartialEq for SubmitResponse
Auto Trait Implementations§
impl Freeze for SubmitResponse
impl RefUnwindSafe for SubmitResponse
impl Send for SubmitResponse
impl Sync for SubmitResponse
impl Unpin for SubmitResponse
impl UnwindSafe for SubmitResponse
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.