Skip to main content

ai_behavior/
status.rs

1/// The result of a behavior or action.
2#[derive(Copy, Clone, Deserialize, Serialize, PartialEq, Eq, Debug)]
3pub enum Status {
4    /// The behavior or action succeeded.
5    Success,
6    /// The behavior or action failed.
7    Failure,
8    /// The behavior or action is still running.
9    Running,
10}