pub struct BranchResult {
pub taken: bool,
pub then_target: NodeId,
pub else_target: Option<NodeId>,
}Expand description
Result of branch evaluation, stored in ContextStore.
Fields§
§taken: boolTrue if the branch condition evaluated to true.
then_target: NodeIdThe NodeId of the then-edge target.
else_target: Option<NodeId>The NodeId of the else-edge target (None if no else branch).
Trait Implementations§
Source§impl Clone for BranchResult
impl Clone for BranchResult
Source§fn clone(&self) -> BranchResult
fn clone(&self) -> BranchResult
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 BranchResult
impl Debug for BranchResult
Source§impl<'de> Deserialize<'de> for BranchResult
impl<'de> Deserialize<'de> for BranchResult
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 BranchResult
impl RefUnwindSafe for BranchResult
impl Send for BranchResult
impl Sync for BranchResult
impl Unpin for BranchResult
impl UnsafeUnpin for BranchResult
impl UnwindSafe for BranchResult
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