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> Freeze for FnWrapperResult<N, R>
impl<N, R> RefUnwindSafe for FnWrapperResult<N, R>where
N: RefUnwindSafe,
R: RefUnwindSafe,
impl<N, R> Send for FnWrapperResult<N, R>
impl<N, R> Sync for FnWrapperResult<N, R>
impl<N, R> Unpin for FnWrapperResult<N, R>
impl<N, R> UnwindSafe for FnWrapperResult<N, R>where
N: UnwindSafe,
R: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more