Struct swc_ecma_utils::function::FnWrapperResult
source · pub struct FnWrapperResult<N, R> {
pub name_fn: N,
pub ref_fn: R,
}
Expand description
The result of declaration wrapper includes two parts.
name_fn
is used to replace the original function.
ref_fn
is an extra function called internally by name_fn
.
function NAME(PARAMS) {
return REF.apply(this, arguments);
}
function REF() {
REF = FUNCTION;
return REF.apply(this, arguments);
}
Fields§
§name_fn: N
§ref_fn: R
Trait Implementations§
source§impl From<FunctionWrapper<Expr>> for FnWrapperResult<FnExpr, FnDecl>
impl From<FunctionWrapper<Expr>> for FnWrapperResult<FnExpr, FnDecl>
source§fn from(value: FunctionWrapper<Expr>) -> Self
fn from(value: FunctionWrapper<Expr>) -> Self
Converts to this type from the input type.
source§impl From<FunctionWrapper<FnDecl>> for FnWrapperResult<FnDecl, FnDecl>
impl From<FunctionWrapper<FnDecl>> for FnWrapperResult<FnDecl, FnDecl>
source§fn from(value: FunctionWrapper<FnDecl>) -> Self
fn from(value: FunctionWrapper<FnDecl>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<N, R> RefUnwindSafe for FnWrapperResult<N, R>where N: RefUnwindSafe, R: RefUnwindSafe,
impl<N, R> Send for FnWrapperResult<N, R>where N: Send, R: Send,
impl<N, R> Sync for FnWrapperResult<N, R>where N: Sync, R: Sync,
impl<N, R> Unpin for FnWrapperResult<N, R>where N: Unpin, R: Unpin,
impl<N, R> UnwindSafe for FnWrapperResult<N, R>where N: UnwindSafe, R: UnwindSafe,
Blanket Implementations§
source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
source§impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Gets the layout of the type.