#[repr(u8)]pub enum ArchivedExpr {
Show 38 variants
    This(<ThisExpr as Archive>::Archived),
    Array(<ArrayLit as Archive>::Archived),
    Object(<ObjectLit as Archive>::Archived),
    Fn(<FnExpr as Archive>::Archived),
    Unary(<UnaryExpr as Archive>::Archived),
    Update(<UpdateExpr as Archive>::Archived),
    Bin(<BinExpr as Archive>::Archived),
    Assign(<AssignExpr as Archive>::Archived),
    Member(<MemberExpr as Archive>::Archived),
    SuperProp(<SuperPropExpr as Archive>::Archived),
    Cond(<CondExpr as Archive>::Archived),
    Call(<CallExpr as Archive>::Archived),
    New(<NewExpr as Archive>::Archived),
    Seq(<SeqExpr as Archive>::Archived),
    Ident(<Ident as Archive>::Archived),
    Lit(<Lit as Archive>::Archived),
    Tpl(<Tpl as Archive>::Archived),
    TaggedTpl(<TaggedTpl as Archive>::Archived),
    Arrow(<ArrowExpr as Archive>::Archived),
    Class(<ClassExpr as Archive>::Archived),
    Yield(<YieldExpr as Archive>::Archived),
    MetaProp(<MetaPropExpr as Archive>::Archived),
    Await(<AwaitExpr as Archive>::Archived),
    Paren(<ParenExpr as Archive>::Archived),
    JSXMember(<JSXMemberExpr as Archive>::Archived),
    JSXNamespacedName(<JSXNamespacedName as Archive>::Archived),
    JSXEmpty(<JSXEmptyExpr as Archive>::Archived),
    JSXElement(<Box<JSXElement> as Archive>::Archived),
    JSXFragment(<JSXFragment as Archive>::Archived),
    TsTypeAssertion(<TsTypeAssertion as Archive>::Archived),
    TsConstAssertion(<TsConstAssertion as Archive>::Archived),
    TsNonNull(<TsNonNullExpr as Archive>::Archived),
    TsAs(<TsAsExpr as Archive>::Archived),
    TsInstantiation(<TsInstantiation as Archive>::Archived),
    TsSatisfies(<TsSatisfiesExpr as Archive>::Archived),
    PrivateName(<PrivateName as Archive>::Archived),
    OptChain(<OptChainExpr as Archive>::Archived),
    Invalid(<Invalid as Archive>::Archived),
}Expand description
An archived Expr
Variants§
This(<ThisExpr as Archive>::Archived)
The archived counterpart of Expr::This
Array(<ArrayLit as Archive>::Archived)
The archived counterpart of Expr::Array
Object(<ObjectLit as Archive>::Archived)
The archived counterpart of Expr::Object
Fn(<FnExpr as Archive>::Archived)
The archived counterpart of Expr::Fn
Unary(<UnaryExpr as Archive>::Archived)
The archived counterpart of Expr::Unary
Update(<UpdateExpr as Archive>::Archived)
The archived counterpart of Expr::Update
Bin(<BinExpr as Archive>::Archived)
The archived counterpart of Expr::Bin
Assign(<AssignExpr as Archive>::Archived)
The archived counterpart of Expr::Assign
Member(<MemberExpr as Archive>::Archived)
The archived counterpart of Expr::Member
SuperProp(<SuperPropExpr as Archive>::Archived)
The archived counterpart of Expr::SuperProp
Cond(<CondExpr as Archive>::Archived)
The archived counterpart of Expr::Cond
Call(<CallExpr as Archive>::Archived)
The archived counterpart of Expr::Call
New(<NewExpr as Archive>::Archived)
The archived counterpart of Expr::New
Seq(<SeqExpr as Archive>::Archived)
The archived counterpart of Expr::Seq
Ident(<Ident as Archive>::Archived)
The archived counterpart of Expr::Ident
Lit(<Lit as Archive>::Archived)
The archived counterpart of Expr::Lit
Tpl(<Tpl as Archive>::Archived)
The archived counterpart of Expr::Tpl
TaggedTpl(<TaggedTpl as Archive>::Archived)
The archived counterpart of Expr::TaggedTpl
Arrow(<ArrowExpr as Archive>::Archived)
The archived counterpart of Expr::Arrow
Class(<ClassExpr as Archive>::Archived)
The archived counterpart of Expr::Class
Yield(<YieldExpr as Archive>::Archived)
The archived counterpart of Expr::Yield
MetaProp(<MetaPropExpr as Archive>::Archived)
The archived counterpart of Expr::MetaProp
Await(<AwaitExpr as Archive>::Archived)
The archived counterpart of Expr::Await
Paren(<ParenExpr as Archive>::Archived)
The archived counterpart of Expr::Paren
JSXMember(<JSXMemberExpr as Archive>::Archived)
The archived counterpart of Expr::JSXMember
JSXNamespacedName(<JSXNamespacedName as Archive>::Archived)
The archived counterpart of Expr::JSXNamespacedName
JSXEmpty(<JSXEmptyExpr as Archive>::Archived)
The archived counterpart of Expr::JSXEmpty
JSXElement(<Box<JSXElement> as Archive>::Archived)
The archived counterpart of Expr::JSXElement
JSXFragment(<JSXFragment as Archive>::Archived)
The archived counterpart of Expr::JSXFragment
TsTypeAssertion(<TsTypeAssertion as Archive>::Archived)
The archived counterpart of Expr::TsTypeAssertion
TsConstAssertion(<TsConstAssertion as Archive>::Archived)
The archived counterpart of Expr::TsConstAssertion
TsNonNull(<TsNonNullExpr as Archive>::Archived)
The archived counterpart of Expr::TsNonNull
TsAs(<TsAsExpr as Archive>::Archived)
The archived counterpart of Expr::TsAs
TsInstantiation(<TsInstantiation as Archive>::Archived)
The archived counterpart of Expr::TsInstantiation
TsSatisfies(<TsSatisfiesExpr as Archive>::Archived)
The archived counterpart of Expr::TsSatisfies
PrivateName(<PrivateName as Archive>::Archived)
The archived counterpart of Expr::PrivateName
OptChain(<OptChainExpr as Archive>::Archived)
The archived counterpart of Expr::OptChain
Invalid(<Invalid as Archive>::Archived)
The archived counterpart of Expr::Invalid
Trait Implementations§
Source§impl<__C> CheckBytes<__C> for ArchivedExprwhere
    <__C as Fallible>::Error: Source,
    __C: ArchiveContext + Fallible + ?Sized,
    __C::Error: Source,
 
impl<__C> CheckBytes<__C> for ArchivedExprwhere
    <__C as Fallible>::Error: Source,
    __C: ArchiveContext + Fallible + ?Sized,
    __C::Error: Source,
impl Portable for ArchivedExprwhere
    <ThisExpr as Archive>::Archived: Portable,
    <ArrayLit as Archive>::Archived: Portable,
    <ObjectLit as Archive>::Archived: Portable,
    <FnExpr as Archive>::Archived: Portable,
    <UnaryExpr as Archive>::Archived: Portable,
    <UpdateExpr as Archive>::Archived: Portable,
    <BinExpr as Archive>::Archived: Portable,
    <AssignExpr as Archive>::Archived: Portable,
    <MemberExpr as Archive>::Archived: Portable,
    <SuperPropExpr as Archive>::Archived: Portable,
    <CondExpr as Archive>::Archived: Portable,
    <CallExpr as Archive>::Archived: Portable,
    <NewExpr as Archive>::Archived: Portable,
    <SeqExpr as Archive>::Archived: Portable,
    <Ident as Archive>::Archived: Portable,
    <Lit as Archive>::Archived: Portable,
    <Tpl as Archive>::Archived: Portable,
    <TaggedTpl as Archive>::Archived: Portable,
    <ArrowExpr as Archive>::Archived: Portable,
    <ClassExpr as Archive>::Archived: Portable,
    <YieldExpr as Archive>::Archived: Portable,
    <MetaPropExpr as Archive>::Archived: Portable,
    <AwaitExpr as Archive>::Archived: Portable,
    <ParenExpr as Archive>::Archived: Portable,
    <JSXMemberExpr as Archive>::Archived: Portable,
    <JSXNamespacedName as Archive>::Archived: Portable,
    <JSXEmptyExpr as Archive>::Archived: Portable,
    <Box<JSXElement> as Archive>::Archived: Portable,
    <JSXFragment as Archive>::Archived: Portable,
    <TsTypeAssertion as Archive>::Archived: Portable,
    <TsConstAssertion as Archive>::Archived: Portable,
    <TsNonNullExpr as Archive>::Archived: Portable,
    <TsAsExpr as Archive>::Archived: Portable,
    <TsInstantiation as Archive>::Archived: Portable,
    <TsSatisfiesExpr as Archive>::Archived: Portable,
    <PrivateName as Archive>::Archived: Portable,
    <OptChainExpr as Archive>::Archived: Portable,
    <Invalid as Archive>::Archived: Portable,
Auto Trait Implementations§
impl Freeze for ArchivedExpr
impl RefUnwindSafe for ArchivedExpr
impl Send for ArchivedExpr
impl Sync for ArchivedExpr
impl !Unpin for ArchivedExpr
impl UnwindSafe for ArchivedExpr
Blanket Implementations§
§impl<T> ArchivePointee for T
 
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
 
type ArchivedMetadata = ()
§fn pointer_metadata(
    _: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
 
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
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
§impl<T> Conv for T
 
impl<T> Conv for T
§impl<T> FmtForward for T
 
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
    Self: Binary,
 
fn fmt_binary(self) -> FmtBinary<Self>where
    Self: Binary,
self to use its Binary implementation when Debug-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
    Self: Display,
 
fn fmt_display(self) -> FmtDisplay<Self>where
    Self: Display,
self to use its Display implementation when
Debug-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
    Self: LowerExp,
 
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
    Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
    Self: LowerHex,
 
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
    Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
    Self: Octal,
 
fn fmt_octal(self) -> FmtOctal<Self>where
    Self: Octal,
self to use its Octal implementation when Debug-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
    Self: Pointer,
 
fn fmt_pointer(self) -> FmtPointer<Self>where
    Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
    Self: UpperExp,
 
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
    Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
    Self: UpperHex,
 
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
    Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.§fn fmt_list(self) -> FmtList<Self>where
    &'a Self: for<'a> IntoIterator,
 
fn fmt_list(self) -> FmtList<Self>where
    &'a Self: for<'a> IntoIterator,
§impl<T> Instrument for T
 
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
§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>
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>
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§impl<T> LayoutRaw for T
 
impl<T> LayoutRaw for T
§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
 
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2where
    T: SharedNiching<N1, N2>,
    N1: Niching<T>,
    N2: Niching<T>,
 
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2where
    T: SharedNiching<N1, N2>,
    N1: Niching<T>,
    N2: Niching<T>,
§impl<T> Pipe for Twhere
    T: ?Sized,
 
impl<T> Pipe for Twhere
    T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
    Self: Sized,
 
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
    Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
    R: 'a,
 
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
    R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
    R: 'a,
 
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
    R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
 
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
    &'a mut self,
    func: impl FnOnce(&'a mut B) -> R,
) -> R
 
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
 
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
 
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
 
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.§impl<T> Pointable for T
 
impl<T> Pointable for T
§impl<T> Pointee for T
 
impl<T> Pointee for T
§impl<T> Tap for T
 
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
 
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
 
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
 
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
 
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
 
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
 
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
 
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
 
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
 
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
 
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
 
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
 
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
 
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.