From 9fff5aa95f088edff2e49ef72eed9c8abe9b11df Mon Sep 17 00:00:00 2001 From: Michele Sessa Date: Thu, 6 Oct 2022 16:44:16 +0100 Subject: [PATCH] docs(box_recursion): add derive debug for necessary structures --- subjects/box_recursion/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subjects/box_recursion/README.md b/subjects/box_recursion/README.md index 065d37e9..e5b15258 100644 --- a/subjects/box_recursion/README.md +++ b/subjects/box_recursion/README.md @@ -14,12 +14,14 @@ You must also create a type named `Link`. This will be the connection between th ### Expected Functions and structures ```rust +#[derive(Debug)] pub struct WorkEnvironment { pub grade: Link, } pub type Link = +#[derive(Debug)] pub struct Worker { pub role: String, pub name: String,