Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
  • Loading branch information
FL03 committed Jul 29, 2024
1 parent 5028018 commit e44613f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/src/state/states/halting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,17 @@
*/
use crate::state::State;

#[doc(hidden)]
pub trait Halter {
const HALT: bool = true;

private!();
}
#[doc(hidden)]
pub enum Halting<T> {
Continue(T),
Halt(T),
}

pub struct Halt<T>(pub T);

Expand Down

0 comments on commit e44613f

Please sign in to comment.