pub trait WithTrace

This commit is contained in:
AF 2024-08-30 21:21:15 +00:00
parent 2034df5379
commit 7ed10668c6
Signed by: alisa
SSH Key Fingerprint: SHA256:vNY4pdIZvO1FYJKHROkdHLtvyopizvZVAEwg9AF6h04

View File

@ -40,7 +40,7 @@ impl instances::effect::Effect for TraceBox {
} }
} }
trait WithTrace: Sized { pub trait WithTrace: Sized {
fn with_trace(self, t: TraceBox) -> Traced<Self>; fn with_trace(self, t: TraceBox) -> Traced<Self>;
} }