pub struct StageRoleCfgV1 {
pub name: String,
pub stage: String,
pub rx: String,
pub tx: String,
}Expand description
Stage role configuration.
Fields§
§name: StringRole name.
stage: StringStage identity (resolver key).
rx: StringRX lane name.
tx: StringTX lane name.
Trait Implementations§
Source§impl Clone for StageRoleCfgV1
impl Clone for StageRoleCfgV1
Source§fn clone(&self) -> StageRoleCfgV1
fn clone(&self) -> StageRoleCfgV1
Returns a duplicate of the value. Read more
1.0.0 · 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 StageRoleCfgV1
impl Debug for StageRoleCfgV1
Source§impl<'de> Deserialize<'de> for StageRoleCfgV1
impl<'de> Deserialize<'de> for StageRoleCfgV1
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 StageRoleCfgV1
impl PartialEq for StageRoleCfgV1
Source§impl Serialize for StageRoleCfgV1
impl Serialize for StageRoleCfgV1
impl Eq for StageRoleCfgV1
impl StructuralPartialEq for StageRoleCfgV1
Auto Trait Implementations§
impl Freeze for StageRoleCfgV1
impl RefUnwindSafe for StageRoleCfgV1
impl Send for StageRoleCfgV1
impl Sync for StageRoleCfgV1
impl Unpin for StageRoleCfgV1
impl UnwindSafe for StageRoleCfgV1
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