pub struct SignRawTransactionResult {
pub hex: Vec<u8>,
pub complete: bool,
pub errors: Option<Vec<SignRawTransactionResultError>>,
}
Fields§
§hex: Vec<u8>
§complete: bool
§errors: Option<Vec<SignRawTransactionResultError>>
Implementations§
source§impl SignRawTransactionResult
impl SignRawTransactionResult
pub fn transaction(&self) -> Result<Transaction, Error>
Trait Implementations§
source§impl Clone for SignRawTransactionResult
impl Clone for SignRawTransactionResult
source§fn clone(&self) -> SignRawTransactionResult
fn clone(&self) -> SignRawTransactionResult
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 SignRawTransactionResult
impl Debug for SignRawTransactionResult
source§impl<'de> Deserialize<'de> for SignRawTransactionResult
impl<'de> Deserialize<'de> for SignRawTransactionResult
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 SignRawTransactionResult
impl PartialEq for SignRawTransactionResult
source§fn eq(&self, other: &SignRawTransactionResult) -> bool
fn eq(&self, other: &SignRawTransactionResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SignRawTransactionResult
impl Serialize for SignRawTransactionResult
impl Eq for SignRawTransactionResult
impl StructuralPartialEq for SignRawTransactionResult
Auto Trait Implementations§
impl Freeze for SignRawTransactionResult
impl RefUnwindSafe for SignRawTransactionResult
impl Send for SignRawTransactionResult
impl Sync for SignRawTransactionResult
impl Unpin for SignRawTransactionResult
impl UnwindSafe for SignRawTransactionResult
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