pub struct SendCommand {
pub target: String,
pub input: Value,
pub branch_id: Option<String>,
}Expand description
Send command for MapReduce pattern
Represents a dynamic edge creation - sending execution to a target node with specific input state.
Fields§
§target: StringTarget node ID
input: ValueInput state for this branch
branch_id: Option<String>Optional branch identifier
Implementations§
Trait Implementations§
Source§impl Clone for SendCommand
impl Clone for SendCommand
Source§fn clone(&self) -> SendCommand
fn clone(&self) -> SendCommand
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 SendCommand
impl Debug for SendCommand
Source§impl<'de> Deserialize<'de> for SendCommand
impl<'de> Deserialize<'de> for SendCommand
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 SendCommand
impl PartialEq for SendCommand
Source§impl Serialize for SendCommand
impl Serialize for SendCommand
impl StructuralPartialEq for SendCommand
Auto Trait Implementations§
impl Freeze for SendCommand
impl RefUnwindSafe for SendCommand
impl Send for SendCommand
impl Sync for SendCommand
impl Unpin for SendCommand
impl UnsafeUnpin for SendCommand
impl UnwindSafe for SendCommand
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