pub enum JsContractEntry {
JsContractEntryOneOf(Box<JsContractEntryOneOf>),
JsContractEntryOneOf1(Box<JsContractEntryOneOf1>),
JsContractEntryOneOf2(Box<JsContractEntryOneOf2>),
JsContractEntryOneOf3(Box<JsContractEntryOneOf3>),
}
Expand description
JsContractEntry : For a contract there could be multiple contract_entry-s in the entire snapshot. These together define the state of one contract in the snapshot. A contract_entry is included in the result, if and only if there is at least one stakeholder party of the contract that is hosted on the synchronizer at the time of the event and the party satisfies the TransactionFilter
in the query.
For a contract there could be multiple contract_entry-s in the entire snapshot. These together define the state of one contract in the snapshot. A contract_entry is included in the result, if and only if there is at least one stakeholder party of the contract that is hosted on the synchronizer at the time of the event and the party satisfies the TransactionFilter
in the query.
Variants§
JsContractEntryOneOf(Box<JsContractEntryOneOf>)
JsContractEntryOneOf1(Box<JsContractEntryOneOf1>)
JsContractEntryOneOf2(Box<JsContractEntryOneOf2>)
JsContractEntryOneOf3(Box<JsContractEntryOneOf3>)
Trait Implementations§
Source§impl Clone for JsContractEntry
impl Clone for JsContractEntry
Source§fn clone(&self) -> JsContractEntry
fn clone(&self) -> JsContractEntry
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more