pub struct Goto {
pub node: String,
pub input: Option<Box<Message>>,
}Expand description
Goto : Name of the node(s) to navigate to next or node(s) to be executed with a provided input.
Fields§
§node: StringThe node to send the message to.
input: Option<Box<Message>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Goto
impl<'de> Deserialize<'de> for Goto
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 StructuralPartialEq for Goto
Auto Trait Implementations§
impl Freeze for Goto
impl RefUnwindSafe for Goto
impl Send for Goto
impl Sync for Goto
impl Unpin for Goto
impl UnwindSafe for Goto
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