pub struct ConditionalNext {
pub condition: Option<String>,
pub target: String,
}Expand description
Conditional next step
Fields§
§condition: Option<String>Condition expression (e.g., “state.score > 0.8”)
target: StringTarget step name
Trait Implementations§
Source§impl Clone for ConditionalNext
impl Clone for ConditionalNext
Source§fn clone(&self) -> ConditionalNext
fn clone(&self) -> ConditionalNext
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 ConditionalNext
impl Debug for ConditionalNext
Source§impl<'de> Deserialize<'de> for ConditionalNext
impl<'de> Deserialize<'de> for ConditionalNext
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 ConditionalNext
impl RefUnwindSafe for ConditionalNext
impl Send for ConditionalNext
impl Sync for ConditionalNext
impl Unpin for ConditionalNext
impl UnwindSafe for ConditionalNext
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