Oops, had ExitStatus without derive Debug

This commit is contained in:
Tony Garnock-Jones 2024-02-24 21:58:56 +01:00
parent 5a431b2060
commit b4f355aa0d
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ pub type ActorError = Box<dyn std::error::Error + Sync + Send + 'static>;
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,