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 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 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§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