Trait BeforeResolvePlugin

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

Required Methods§

Source

fn before_resolve_condition(self: Vc<Self>) -> Vc<BeforeResolvePluginCondition>
where Self: Sized,

Source

fn before_resolve( self: Vc<Self>, lookup_path: Vc<FileSystemPath>, reference_type: Value<ReferenceType>, request: Vc<Request>, ) -> Vc<ResolveResultOption>
where Self: Sized,

Trait Implementations§

Implementors§