pub struct State<Left, Value, Right, Default>(_, _, _, _) 
where
    Left: List,
    Value: Bit,
    Right: List,
    Default: Bit
;
Expand description

Zipper-list, representing current state of program. Consists of left-hand List, Value – Bit and right-hand List.

Trait Implementations

Formats the value using the given formatter. Read more

Left type (List).

Value type (Bit).

Right type (List).

‘Default’ cell value (Bit)

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

Real value of type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.