pub struct SingleRingStagePlanV2 {
pub stage: String,
pub depends_on: Vec<String>,
}Expand description
One authored SingleRing stage instance in the full-parity source contract.
Fields§
§stage: StringStage id referencing a shared PlanStage entry.
depends_on: Vec<String>Upstream stage ids that this stage depends on.
Trait Implementations§
Source§impl Clone for SingleRingStagePlanV2
impl Clone for SingleRingStagePlanV2
Source§fn clone(&self) -> SingleRingStagePlanV2
fn clone(&self) -> SingleRingStagePlanV2
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 SingleRingStagePlanV2
impl Debug for SingleRingStagePlanV2
Source§impl<'de> Deserialize<'de> for SingleRingStagePlanV2
impl<'de> Deserialize<'de> for SingleRingStagePlanV2
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 SingleRingStagePlanV2
impl PartialEq for SingleRingStagePlanV2
Source§impl Serialize for SingleRingStagePlanV2
impl Serialize for SingleRingStagePlanV2
impl Eq for SingleRingStagePlanV2
impl StructuralPartialEq for SingleRingStagePlanV2
Auto Trait Implementations§
impl Freeze for SingleRingStagePlanV2
impl RefUnwindSafe for SingleRingStagePlanV2
impl Send for SingleRingStagePlanV2
impl Sync for SingleRingStagePlanV2
impl Unpin for SingleRingStagePlanV2
impl UnwindSafe for SingleRingStagePlanV2
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