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
sourceimpl From<FunctionWrapper<Expr>> for FnWrapperResult<FnExpr, FnDecl>
impl From<FunctionWrapper<Expr>> for FnWrapperResult<FnExpr, FnDecl>
sourcefn from(value: FunctionWrapper<Expr>) -> Self
fn from(value: FunctionWrapper<Expr>) -> Self
Converts to this type from the input type.
sourceimpl From<FunctionWrapper<FnDecl>> for FnWrapperResult<FnDecl, FnDecl>
impl From<FunctionWrapper<FnDecl>> for FnWrapperResult<FnDecl, FnDecl>
sourcefn 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more