pub trait ImportTracer:
Send
+ Sync
+ NonLocalValue
+ ValueDebug {
// Required method
fn get_traces(self: Vc<Self>, path: FileSystemPath) -> Vc<ImportTraces>
where Self: Sized;
}Required Methods§
fn get_traces(self: Vc<Self>, path: FileSystemPath) -> Vc<ImportTraces>where
Self: Sized,
Trait Implementations§
Source§impl TraitVtablePrototype for Box<dyn ImportTracer>
impl TraitVtablePrototype for Box<dyn ImportTracer>
Source§impl VcValueTrait for Box<dyn ImportTracer>
impl VcValueTrait for Box<dyn ImportTracer>
Source§const IMPL_VTABLES: &'static VTableRegistry<Self::ValueTrait>
const IMPL_VTABLES: &'static VTableRegistry<Self::ValueTrait>
The per-trait vtable registry, populated at program load by
#[ctor::ctor]
functions emitted by each #[turbo_tasks::value_impl] expansion. Read moretype ValueTrait = dyn ImportTracer
Source§fn get_trait_type_id() -> TraitTypeId
fn get_trait_type_id() -> TraitTypeId
Returns the type id of the trait object.
impl Dynamic<Box<dyn ImportTracer>> for Box<dyn ImportTracer>
impl Dynamic<Box<dyn ValueDebug>> for Box<dyn ImportTracer>
Available on debug-assertions enabled only.
impl Upcast<Box<dyn ImportTracer>> for Box<dyn ImportTracer>
impl Upcast<Box<dyn ValueDebug>> for Box<dyn ImportTracer>
Available on debug-assertions enabled only.
impl UpcastStrict<Box<dyn ValueDebug>> for Box<dyn ImportTracer>
Available on debug-assertions enabled only.