pub struct BindIdentity {
pub project_root: PathBuf,
pub harness: String,
pub session: String,
}Expand description
Per-route bind identity shared by client-facing and module-facing control.
Fields§
§project_root: PathBuf§harness: String§session: StringTrait Implementations§
Source§impl Clone for BindIdentity
impl Clone for BindIdentity
Source§fn clone(&self) -> BindIdentity
fn clone(&self) -> BindIdentity
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 BindIdentity
impl Debug for BindIdentity
Source§impl<'de> Deserialize<'de> for BindIdentity
impl<'de> Deserialize<'de> for BindIdentity
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 BindIdentity
Source§impl PartialEq for BindIdentity
impl PartialEq for BindIdentity
Source§fn eq(&self, other: &BindIdentity) -> bool
fn eq(&self, other: &BindIdentity) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BindIdentity
impl Serialize for BindIdentity
impl StructuralPartialEq for BindIdentity
Auto Trait Implementations§
impl Freeze for BindIdentity
impl RefUnwindSafe for BindIdentity
impl Send for BindIdentity
impl Sync for BindIdentity
impl Unpin for BindIdentity
impl UnsafeUnpin for BindIdentity
impl UnwindSafe for BindIdentity
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