pub struct SingleRingAuthoringV2 {
pub ingress_boundary: String,
pub egress_boundary: String,
pub stages: Vec<SingleRingStagePlanV2>,
pub constraints: SingleRingConstraintSetV2,
}Expand description
Full-parity SingleRing authoring payload.
Fields§
§ingress_boundary: StringBoundary id that feeds the first producer-visible stage set.
egress_boundary: StringBoundary id that drains the final stage set.
stages: Vec<SingleRingStagePlanV2>Stages in topological order.
constraints: SingleRingConstraintSetV2SingleRing execution constraints.
Trait Implementations§
Source§impl Clone for SingleRingAuthoringV2
impl Clone for SingleRingAuthoringV2
Source§fn clone(&self) -> SingleRingAuthoringV2
fn clone(&self) -> SingleRingAuthoringV2
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 SingleRingAuthoringV2
impl Debug for SingleRingAuthoringV2
Source§impl<'de> Deserialize<'de> for SingleRingAuthoringV2
impl<'de> Deserialize<'de> for SingleRingAuthoringV2
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 SingleRingAuthoringV2
impl PartialEq for SingleRingAuthoringV2
Source§impl Serialize for SingleRingAuthoringV2
impl Serialize for SingleRingAuthoringV2
impl Eq for SingleRingAuthoringV2
impl StructuralPartialEq for SingleRingAuthoringV2
Auto Trait Implementations§
impl Freeze for SingleRingAuthoringV2
impl RefUnwindSafe for SingleRingAuthoringV2
impl Send for SingleRingAuthoringV2
impl Sync for SingleRingAuthoringV2
impl Unpin for SingleRingAuthoringV2
impl UnwindSafe for SingleRingAuthoringV2
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