pub struct AttachRequest {
pub project_root: PathBuf,
pub harness: String,
pub session: String,
pub config: Vec<ConfigTier>,
}Expand description
Client-originated channel-0 control RPC body for binding a harness session to a module route.
Fields§
§project_root: PathBuf§harness: String§session: String§config: Vec<ConfigTier>Ordered config tiers; precedence is list order, with later tiers winning.
Trait Implementations§
Source§impl Clone for AttachRequest
impl Clone for AttachRequest
Source§fn clone(&self) -> AttachRequest
fn clone(&self) -> AttachRequest
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 AttachRequest
impl Debug for AttachRequest
Source§impl<'de> Deserialize<'de> for AttachRequest
impl<'de> Deserialize<'de> for AttachRequest
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 AttachRequest
impl PartialEq for AttachRequest
Source§fn eq(&self, other: &AttachRequest) -> bool
fn eq(&self, other: &AttachRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AttachRequest
impl Serialize for AttachRequest
impl StructuralPartialEq for AttachRequest
Auto Trait Implementations§
impl Freeze for AttachRequest
impl RefUnwindSafe for AttachRequest
impl Send for AttachRequest
impl Sync for AttachRequest
impl Unpin for AttachRequest
impl UnsafeUnpin for AttachRequest
impl UnwindSafe for AttachRequest
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