pub struct JsGetActiveContractsResponse {
pub workflow_id: Option<String>,
pub contract_entry: Option<Box<JsContractEntry>>,
pub stream_continuation_token: Option<String>,
}Fields§
§workflow_id: Option<String>The workflow ID used in command submission which corresponds to the contract_entry. Only set if the workflow_id for the command was set. Must be a valid LedgerString (as described in value.proto). Optional
contract_entry: Option<Box<JsContractEntry>>§stream_continuation_token: Option<String>Opaque representation of a continuation token which can be used in the request to bypass the already processed part of the active contracts snapshot. Only populated for the streaming GetActiveContracts rpc call. Optional: can be empty
Implementations§
Source§impl JsGetActiveContractsResponse
impl JsGetActiveContractsResponse
pub fn new() -> JsGetActiveContractsResponse
Trait Implementations§
Source§impl Clone for JsGetActiveContractsResponse
impl Clone for JsGetActiveContractsResponse
Source§fn clone(&self) -> JsGetActiveContractsResponse
fn clone(&self) -> JsGetActiveContractsResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 JsGetActiveContractsResponse
impl Debug for JsGetActiveContractsResponse
Source§impl Default for JsGetActiveContractsResponse
impl Default for JsGetActiveContractsResponse
Source§fn default() -> JsGetActiveContractsResponse
fn default() -> JsGetActiveContractsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JsGetActiveContractsResponse
impl<'de> Deserialize<'de> for JsGetActiveContractsResponse
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
impl StructuralPartialEq for JsGetActiveContractsResponse
Auto Trait Implementations§
impl Freeze for JsGetActiveContractsResponse
impl RefUnwindSafe for JsGetActiveContractsResponse
impl Send for JsGetActiveContractsResponse
impl Sync for JsGetActiveContractsResponse
impl Unpin for JsGetActiveContractsResponse
impl UnsafeUnpin for JsGetActiveContractsResponse
impl UnwindSafe for JsGetActiveContractsResponse
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