pub struct AttachRelay {
pub route_channel: u16,
pub project_root: PathBuf,
pub harness: String,
pub session: String,
pub config: Vec<ConfigTier>,
}Expand description
subc-to-module channel-0 control RPC body asking the singleton module to bind a route channel.
Fields§
§route_channel: u16§project_root: PathBuf§harness: String§session: String§config: Vec<ConfigTier>Ordered config tiers forwarded from AttachRequest unchanged; subc
never merges, partitions, parses, or relabels config.
Trait Implementations§
Source§impl Clone for AttachRelay
impl Clone for AttachRelay
Source§fn clone(&self) -> AttachRelay
fn clone(&self) -> AttachRelay
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 AttachRelay
impl Debug for AttachRelay
Source§impl<'de> Deserialize<'de> for AttachRelay
impl<'de> Deserialize<'de> for AttachRelay
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
Source§impl PartialEq for AttachRelay
impl PartialEq for AttachRelay
Source§fn eq(&self, other: &AttachRelay) -> bool
fn eq(&self, other: &AttachRelay) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AttachRelay
impl Serialize for AttachRelay
impl StructuralPartialEq for AttachRelay
Auto Trait Implementations§
impl Freeze for AttachRelay
impl RefUnwindSafe for AttachRelay
impl Send for AttachRelay
impl Sync for AttachRelay
impl Unpin for AttachRelay
impl UnsafeUnpin for AttachRelay
impl UnwindSafe for AttachRelay
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