pub enum StmtField {
Show 19 variants
Block,
Empty,
Debugger,
With,
Return,
Labeled,
Break,
Continue,
If,
Switch,
Throw,
Try,
While,
DoWhile,
For,
ForIn,
ForOf,
Decl,
Expr,
}
Variants§
Block
Represents Stmt::Block
Empty
Represents Stmt::Empty
Debugger
Represents Stmt::Debugger
With
Represents Stmt::With
Return
Represents Stmt::Return
Labeled
Represents Stmt::Labeled
Break
Represents Stmt::Break
Continue
Represents Stmt::Continue
If
Represents Stmt::If
Switch
Represents Stmt::Switch
Throw
Represents Stmt::Throw
Try
Represents Stmt::Try
While
Represents Stmt::While
DoWhile
Represents Stmt::DoWhile
For
Represents Stmt::For
ForIn
Represents Stmt::ForIn
ForOf
Represents Stmt::ForOf
Decl
Represents Stmt::Decl
Expr
Represents Stmt::Expr
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StmtField
impl<'de> Deserialize<'de> for StmtField
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for StmtField
impl Ord for StmtField
Source§impl PartialOrd for StmtField
impl PartialOrd for StmtField
impl Copy for StmtField
impl Eq for StmtField
impl StructuralPartialEq for StmtField
Auto Trait Implementations§
impl Freeze for StmtField
impl RefUnwindSafe for StmtField
impl Send for StmtField
impl Sync for StmtField
impl Unpin for StmtField
impl UnwindSafe for StmtField
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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