pub struct TransactionCore {
pub kind: TransactionKind,
pub inputs: Vec<TransactionInput>,
pub outputs: Vec<Output>,
}Fields§
§kind: TransactionKind§inputs: Vec<TransactionInput>§outputs: Vec<Output>Implementations§
Trait Implementations§
Source§impl Clone for TransactionCore
impl Clone for TransactionCore
Source§fn clone(&self) -> TransactionCore
fn clone(&self) -> TransactionCore
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 TransactionCore
impl Debug for TransactionCore
Source§impl<'de> Deserialize<'de> for TransactionCore
impl<'de> Deserialize<'de> for TransactionCore
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 TransactionCore
impl PartialEq for TransactionCore
Source§impl Serialize for TransactionCore
impl Serialize for TransactionCore
impl Eq for TransactionCore
impl StructuralPartialEq for TransactionCore
Auto Trait Implementations§
impl Freeze for TransactionCore
impl RefUnwindSafe for TransactionCore
impl Send for TransactionCore
impl Sync for TransactionCore
impl Unpin for TransactionCore
impl UnsafeUnpin for TransactionCore
impl UnwindSafe for TransactionCore
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