pub trait ValueDebug:
Send
+ Sync
+ NonLocalValue {
// Required methods
fn dbg(self: Vc<Self>) -> Vc<ValueDebugString>
where Self: Sized;
fn dbg_depth(self: Vc<Self>, depth: usize) -> Vc<ValueDebugString>
where Self: Sized;
}
Expand description
Debug
-like trait for Vc
types, automatically derived when using
turbo_tasks::value
and turbo_tasks::value_trait
.
§Usage
ⓘ
dbg!(any_vc.dbg().await?);