pub trait StateTrait {
    type Left: List;
    type Value: Bit;
    type Right: List;
    type Default: Bit;

    fn new() -> Self;
    fn val() -> RuntimeState;
}
Expand description

Single-type trait for State type, used to get Left, Value and Rigth types.

Required Associated Types

Left type (List).

Value type (Bit).

Right type (List).

‘Default’ cell value (Bit)

Required Methods

Real value of type.

Real, represented with rust’s objects value of type.

Implementors