pub enum ExecutionBackend {
Evm {
chain_id: u64,
},
Svm {
cluster: String,
},
Daml {
participant_host: String,
participant_port: u16,
},
MultiVm,
MppPayment {
endpoint: String,
},
X402Payment {
endpoint: String,
},
Bridge {
adapters: Vec<String>,
},
}Expand description
The execution backend an agent dispatches against. Each variant maps to an existing Tenzro subsystem.
Variants§
Evm
Dispatch raw EVM transactions through MultiVmRuntime
Svm
Dispatch SVM transactions through MultiVmRuntime
Daml
Submit DAML commands to a Canton participant via DamlExecutor
MultiVm
Cross-VM workflow that may touch EVM, SVM, and DAML in one run
MppPayment
Pure machine-payment flow over MPP (no on-chain VM dispatch)
X402Payment
Pure machine-payment flow over x402 (no on-chain VM dispatch)
Bridge
Cross-chain bridge workflow via BridgeRouter
Trait Implementations§
Source§impl Clone for ExecutionBackend
impl Clone for ExecutionBackend
Source§fn clone(&self) -> ExecutionBackend
fn clone(&self) -> ExecutionBackend
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 ExecutionBackend
impl Debug for ExecutionBackend
Source§impl<'de> Deserialize<'de> for ExecutionBackend
impl<'de> Deserialize<'de> for ExecutionBackend
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 Eq for ExecutionBackend
Source§impl PartialEq for ExecutionBackend
impl PartialEq for ExecutionBackend
Source§fn eq(&self, other: &ExecutionBackend) -> bool
fn eq(&self, other: &ExecutionBackend) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExecutionBackend
impl Serialize for ExecutionBackend
impl StructuralPartialEq for ExecutionBackend
Auto Trait Implementations§
impl Freeze for ExecutionBackend
impl RefUnwindSafe for ExecutionBackend
impl Send for ExecutionBackend
impl Sync for ExecutionBackend
impl Unpin for ExecutionBackend
impl UnsafeUnpin for ExecutionBackend
impl UnwindSafe for ExecutionBackend
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