reactive_graph_behaviour_model_api/state.rs
1/// The state of a behaviour.
2#[derive(Debug, Clone, Copy, PartialEq, Eq)]
3pub enum BehaviourState {
4 /// The behaviour has been created.
5 Created,
6
7 /// The behaviour has been validated.
8 Valid,
9
10 /// The behaviour is initialized but not connected.
11 Ready,
12
13 /// The behaviour is connected.
14 Connected,
15}