pub struct EscrowDispatchRequest {
pub dispatch_id: String,
pub issued_at: u64,
pub trust_profile_id: String,
pub contract_package_id: String,
pub capability_id: String,
pub depositor_address: String,
pub beneficiary_address: String,
pub capital_instruction: SignedCapitalExecutionInstruction,
pub settlement_path: Web3SettlementPath,
pub oracle_evidence_required_for_fx: bool,
pub note: Option<String>,
}Fields§
§dispatch_id: String§issued_at: u64§trust_profile_id: String§contract_package_id: String§capability_id: String§depositor_address: String§beneficiary_address: String§capital_instruction: SignedCapitalExecutionInstruction§settlement_path: Web3SettlementPath§oracle_evidence_required_for_fx: bool§note: Option<String>Trait Implementations§
Source§impl Clone for EscrowDispatchRequest
impl Clone for EscrowDispatchRequest
Source§fn clone(&self) -> EscrowDispatchRequest
fn clone(&self) -> EscrowDispatchRequest
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 EscrowDispatchRequest
impl Debug for EscrowDispatchRequest
Source§impl<'de> Deserialize<'de> for EscrowDispatchRequest
impl<'de> Deserialize<'de> for EscrowDispatchRequest
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
Auto Trait Implementations§
impl Freeze for EscrowDispatchRequest
impl RefUnwindSafe for EscrowDispatchRequest
impl Send for EscrowDispatchRequest
impl Sync for EscrowDispatchRequest
impl Unpin for EscrowDispatchRequest
impl UnsafeUnpin for EscrowDispatchRequest
impl UnwindSafe for EscrowDispatchRequest
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