Could we add #[derive(Clone)] and #[derive(Deserialize)] to here? This addition would be helpful for those who store Report within their enums that require to implement Clone, as is my case. Also, I need to have Deserialize for my fullstack Rust application for checking a result on frontend.
Could we add
#[derive(Clone)]
and#[derive(Deserialize)]
to here? This addition would be helpful for those who storeReport
within their enums that require to implementClone
, as is my case. Also, I need to haveDeserialize
for my fullstack Rust application for checking a result on frontend.