pub struct TransactionView {
pub inner: Transaction,
pub hash: H256,
}
Expand description
The JSON view of a Transaction.
This structure is serialized into a JSON object with field hash
and all the fields in
Transaction
.
§Examples
{
"cell_deps": [
{
"dep_type": "code",
"out_point": {
"index": "0x0",
"tx_hash": "0xa4037a893eb48e18ed4ef61034ce26eba9c585f15c9cee102ae58505565eccc3"
}
}
],
"hash": "0xa0ef4eb5f4ceeb08a4c8524d84c5da95dce2f608e0ca2ec8091191b0f330c6e3",
"header_deps": [
"0x7978ec7ce5b507cfb52e149e36b1a23f6062ed150503c85bbf825da3599095ed"
],
"inputs": [
{
"previous_output": {
"index": "0x0",
"tx_hash": "0x365698b50ca0da75dca2c87f9e7b563811d3b5813736b8cc62cc3b106faceb17"
},
"since": "0x0"
}
],
"outputs": [
{
"capacity": "0x2540be400",
"lock": {
"code_hash": "0x28e83a1277d48add8e72fadaa9248559e1b632bab2bd60b27955ebc4c03800a5",
"hash_type": "data",
"args": "0x"
},
"type": null
}
],
"outputs_data": [
"0x"
],
"version": "0x0",
"witnesses": []
}
Fields§
§inner: Transaction
All the fields in Transaction
are included in TransactionView
in JSON.
hash: H256
The transaction hash.
Trait Implementations§
Source§impl Clone for TransactionView
impl Clone for TransactionView
Source§fn clone(&self) -> TransactionView
fn clone(&self) -> TransactionView
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 TransactionView
impl Debug for TransactionView
Source§impl Default for TransactionView
impl Default for TransactionView
Source§fn default() -> TransactionView
fn default() -> TransactionView
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransactionView
impl<'de> Deserialize<'de> for TransactionView
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 From<TransactionView> for TransactionView
impl From<TransactionView> for TransactionView
Source§fn from(input: TransactionView) -> Self
fn from(input: TransactionView) -> Self
Converts to this type from the input type.
Source§impl Hash for TransactionView
impl Hash for TransactionView
Source§impl JsonSchema for TransactionView
impl JsonSchema for TransactionView
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreSource§impl PartialEq for TransactionView
impl PartialEq for TransactionView
Source§impl Serialize for TransactionView
impl Serialize for TransactionView
impl Eq for TransactionView
impl StructuralPartialEq for TransactionView
Auto Trait Implementations§
impl Freeze for TransactionView
impl RefUnwindSafe for TransactionView
impl Send for TransactionView
impl Sync for TransactionView
impl Unpin for TransactionView
impl UnwindSafe for TransactionView
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)