pub struct ElemParallel {
pub branches: Vec<Elem>,
pub merge: MergeStrategy,
pub next: Box<Elem>,
}
Expand description
Fields§
§branches: Vec<Elem>
The branches, all of which but be taken concurrently.
merge: MergeStrategy
The method of joining the branches.
next: Box<Elem>
The next graph element that this parallel edge connects to.
Trait Implementations§
Source§impl Clone for ElemParallel
impl Clone for ElemParallel
Source§fn clone(&self) -> ElemParallel
fn clone(&self) -> ElemParallel
Returns a copy 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 ElemParallel
impl Debug for ElemParallel
Source§impl<'de> Deserialize<'de> for ElemParallel
impl<'de> Deserialize<'de> for ElemParallel
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
Auto Trait Implementations§
impl Freeze for ElemParallel
impl RefUnwindSafe for ElemParallel
impl Send for ElemParallel
impl Sync for ElemParallel
impl Unpin for ElemParallel
impl UnwindSafe for ElemParallel
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request