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
sourceimpl SignRawTransactionResult
impl SignRawTransactionResult
pub fn transaction(&self) -> Result<Transaction, Error>
Trait Implementations
sourceimpl Clone for SignRawTransactionResult
impl Clone for SignRawTransactionResult
sourcefn clone(&self) -> SignRawTransactionResult
fn clone(&self) -> SignRawTransactionResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SignRawTransactionResult
impl Debug for SignRawTransactionResult
sourceimpl<'de> Deserialize<'de> for SignRawTransactionResult
impl<'de> Deserialize<'de> for SignRawTransactionResult
sourcefn 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
sourceimpl PartialEq<SignRawTransactionResult> for SignRawTransactionResult
impl PartialEq<SignRawTransactionResult> for SignRawTransactionResult
sourcefn 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 ==
. Read more
sourceimpl Serialize for SignRawTransactionResult
impl Serialize for SignRawTransactionResult
impl Eq for SignRawTransactionResult
impl StructuralEq for SignRawTransactionResult
impl StructuralPartialEq for SignRawTransactionResult
Auto Trait Implementations
impl RefUnwindSafe for SignRawTransactionResult
impl Send for SignRawTransactionResult
impl Sync for SignRawTransactionResult
impl Unpin for SignRawTransactionResult
impl UnwindSafe for SignRawTransactionResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more