From b4f355aa0daf77ac263661d3823357062bca2f46 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Sat, 24 Feb 2024 21:58:56 +0100 Subject: [PATCH] Oops, had ExitStatus without derive Debug --- syndicate/src/actor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syndicate/src/actor.rs b/syndicate/src/actor.rs index 39c3f85..321511f 100644 --- a/syndicate/src/actor.rs +++ b/syndicate/src/actor.rs @@ -88,7 +88,7 @@ pub type ActorError = Box; pub type ActorResult = Result<(), ActorError>; /// Final exit status of an actor. -#[derive(Clone, PartialEq, Eq)] +#[derive(Debug, Clone, PartialEq, Eq)] pub enum ExitStatus { Normal, Dropped,