pub struct StageTopologyEntry {
pub stage_id: String,
pub stage_index: u32,
pub host: Option<String>,
pub endpoint: String,
pub layer_start: u32,
pub layer_end: u32,
pub load_mode: LoadMode,
}Fields§
§stage_id: String§stage_index: u32§host: Option<String>§endpoint: String§layer_start: u32§layer_end: u32§load_mode: LoadModeTrait Implementations§
Source§impl Clone for StageTopologyEntry
impl Clone for StageTopologyEntry
Source§fn clone(&self) -> StageTopologyEntry
fn clone(&self) -> StageTopologyEntry
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 StageTopologyEntry
impl Debug for StageTopologyEntry
Source§impl<'de> Deserialize<'de> for StageTopologyEntry
impl<'de> Deserialize<'de> for StageTopologyEntry
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 StageTopologyEntry
Source§impl PartialEq for StageTopologyEntry
impl PartialEq for StageTopologyEntry
Source§impl Serialize for StageTopologyEntry
impl Serialize for StageTopologyEntry
impl StructuralPartialEq for StageTopologyEntry
Auto Trait Implementations§
impl Freeze for StageTopologyEntry
impl RefUnwindSafe for StageTopologyEntry
impl Send for StageTopologyEntry
impl Sync for StageTopologyEntry
impl Unpin for StageTopologyEntry
impl UnsafeUnpin for StageTopologyEntry
impl UnwindSafe for StageTopologyEntry
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