Added debug attributes to structs pertaining to thread in order to allow for applying assertions upon Thread

This commit is contained in:
François Autin
2023-03-09 13:24:04 +01:00
parent 71ccd0c16e
commit 6e6b97911a
5 changed files with 24 additions and 5 deletions

View File

@ -1,5 +1,5 @@
#[derive(PartialEq)]
#[derive(PartialEq, Debug)]
pub struct Process {
pub num_thread: usize,
}