actrpc-orchestrator 0.1.0

Configuration and orchestration utilities for ActRPC.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::interceptor::InterceptorPolicy;
use actrpc_transport::TransportTarget;
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct InterceptorConfig {
    pub name: String,
    pub policy: InterceptorPolicy,
    pub target: TransportTarget,
}