pub enum AgentDecision {
Action(AgentAction),
Finish(AgentFinish),
}
Variants§
Action(AgentAction)
Finish(AgentFinish)
Trait Implementations§
Source§impl Debug for AgentDecision
impl Debug for AgentDecision
Source§impl PartialEq for AgentDecision
impl PartialEq for AgentDecision
impl StructuralPartialEq for AgentDecision
Auto Trait Implementations§
impl Freeze for AgentDecision
impl !RefUnwindSafe for AgentDecision
impl Send for AgentDecision
impl Sync for AgentDecision
impl Unpin for AgentDecision
impl !UnwindSafe for AgentDecision
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