rmux-proto 0.1.0

RMUX detached IPC protocol DTOs, framing, and wire-safe error types.
Documentation
1
2
3
4
5
6
7
8
use serde::{Deserialize, Serialize};

/// Response payload for internal detached target resolution.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct ResolveTargetResponse {
    /// The fully resolved exact target.
    pub target: crate::Target,
}