pub trait BeforeResolvePlugin:
Send
+ Sync
+ NonLocalValue
+ ValueDebug {
// Required methods
fn before_resolve_condition(
self: Vc<Self>,
) -> Vc<BeforeResolvePluginCondition>
where Self: Sized;
fn before_resolve(
self: Vc<Self>,
lookup_path: Vc<FileSystemPath>,
reference_type: Value<ReferenceType>,
request: Vc<Request>,
) -> Vc<ResolveResultOption>
where Self: Sized;
}