Trait EcmascriptParsable

Source
pub trait EcmascriptParsable:
    Send
    + Sync
    + NonLocalValue
    + ValueDebug {
    // Required methods
    fn failsafe_parse(self: Vc<Self>) -> Vc<ParseResult>
       where Self: Sized;
    fn parse_original(self: Vc<Self>) -> Vc<ParseResult>
       where Self: Sized;
    fn ty(self: Vc<Self>) -> Vc<EcmascriptModuleAssetType>
       where Self: Sized;
}

Required Methods§

Source

fn failsafe_parse(self: Vc<Self>) -> Vc<ParseResult>
where Self: Sized,

Source

fn parse_original(self: Vc<Self>) -> Vc<ParseResult>
where Self: Sized,

Source

fn ty(self: Vc<Self>) -> Vc<EcmascriptModuleAssetType>
where Self: Sized,

Trait Implementations§

Implementors§