pub trait WithTrace
All checks were successful
buildbot/cargo fmt (1.72) Build done.
buildbot/cargo doc (1.72) Build done.
buildbot/cargo clippy (1.72) Build done.
buildbot/cargo clippy (1.65) Build done.
buildbot/cargo test (1.65) Build done.

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>;
} }