Struct rgoap::Action [] [src]

pub struct Action {
    pub name: String,
    pub cost: usize,
    pub pre_conditions: State,
    pub post_conditions: State,
}

An action that can be used to influence the world state.

Fields

Methods

impl Action
[src]

Trait Implementations

impl PartialEq for Action
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Action
[src]