Trait PartialAtomic

Source
pub unsafe trait PartialAtomic: Component {
    type State;
}
Expand description

Partial interface for DEVS atomic models. It is used as a helper trait to implement the crate::Atomic trait.

§Safety

This trait must be implemented via macros. Do not implement it manually.

Required Associated Types§

Source

type State

The data type used to represent the state of the model.

Implementors§