pub struct GraphDecision {
pub next: AgentNode,
pub checkpoint: bool,
}Expand description
Pure graph transition decision.
Fields§
§next: AgentNodeNext node to execute.
checkpoint: boolWhether a checkpoint should be written at this boundary.
Trait Implementations§
Source§impl Clone for GraphDecision
impl Clone for GraphDecision
Source§fn clone(&self) -> GraphDecision
fn clone(&self) -> GraphDecision
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for GraphDecision
Source§impl Debug for GraphDecision
impl Debug for GraphDecision
Source§impl<'de> Deserialize<'de> for GraphDecision
impl<'de> Deserialize<'de> for GraphDecision
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 Eq for GraphDecision
Source§impl PartialEq for GraphDecision
impl PartialEq for GraphDecision
Source§fn eq(&self, other: &GraphDecision) -> bool
fn eq(&self, other: &GraphDecision) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GraphDecision
impl Serialize for GraphDecision
impl StructuralPartialEq for GraphDecision
Auto Trait Implementations§
impl Freeze for GraphDecision
impl RefUnwindSafe for GraphDecision
impl Send for GraphDecision
impl Sync for GraphDecision
impl Unpin for GraphDecision
impl UnsafeUnpin for GraphDecision
impl UnwindSafe for GraphDecision
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