[][src]Struct msr::SystemState

pub struct SystemState {
    pub io: IoState,
    pub setpoints: HashMap<String, Value>,
    pub controllers: HashMap<String, ControllerState>,
    pub inactive_loops: Vec<String>,
    pub state_machines: HashMap<String, String>,
    pub rules: HashMap<String, bool>,
    pub timeouts: HashMap<String, Value>,
}

The state of a synchronous controlling system.

Fields

io: IoState

I/O states

setpoints: HashMap<String, Value>

Controller setpoints

controllers: HashMap<String, ControllerState>

Controller states

inactive_loops: Vec<String>

List of inactive loops

state_machines: HashMap<String, String>

Finite State Machine states

rules: HashMap<String, bool>

Rule states

timeouts: HashMap<String, Value>

Timeout states

Methods

impl SystemState[src]

pub fn get<'a>(&'a self, src: &'a Source) -> Option<&'a Value>[src]

Get a specific value defined by a Source.

Trait Implementations

impl Evaluation<SystemState> for Comparison[src]

type Output = bool

Evaluation result type.

impl<T> Evaluation<SystemState> for BoolExpr<T> where
    T: Evaluation<SystemState, Output = bool>, 
[src]

type Output = bool

Evaluation result type.

impl PartialEq<SystemState> for SystemState[src]

impl Clone for SystemState[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for SystemState[src]

impl Debug for SystemState[src]

Auto Trait Implementations

impl Send for SystemState

impl Sync for SystemState

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]