pub trait Introspectable:
Send
+ Sync
+ NonLocalValue
+ ValueDebug {
// Required method
fn ty(self: Vc<Self>) -> Vc<RcStr>
where Self: Sized;
// Provided methods
fn title(self: Vc<Self>) -> Vc<RcStr>
where Self: Sized { ... }
fn details(self: Vc<Self>) -> Vc<RcStr>
where Self: Sized { ... }
fn children(self: Vc<Self>) -> Vc<IntrospectableChildren>
where Self: Sized { ... }
}