macro_rules! io_states {
($($state:ident),+ $(,)?) => { ... };
}Expand description
Generate the data-less lifecycle state markers: a zero-sized struct plus its
sealed IoState impls. States that carry data (e.g. Pending) are written
by hand because they have fields.