Skip to main content

OptionState

Type Alias OptionState 

Source
pub type OptionState<Q> = State<Option<Q>>;
Expand description

A state whose halting value is defined by the None variant.

Aliased Type§

#[repr(transparent)]
pub struct OptionState<Q>(pub Option<Q>);

Tuple Fields§

§0: Option<Q>