pub enum Statement {
    Assert(AssertStatement),
    Assign(Box<AssignStatement>),
    Block(Block),
    Conditional(ConditionalStatement),
    Const(ConstDeclaration),
    Definition(DefinitionStatement),
    Expression(ExpressionStatement),
    Iteration(Box<IterationStatement>),
    Return(ReturnStatement),
}Expand description
Program statement that defines some action (or expression) to be carried out.
Variants§
Assert(AssertStatement)
An assert statement.
Assign(Box<AssignStatement>)
An assignment statement.
Block(Block)
A block statement.
Conditional(ConditionalStatement)
An if statement.
Const(ConstDeclaration)
A binding from identifier to constant value.
Definition(DefinitionStatement)
A binding or set of bindings / variables to declare.
Expression(ExpressionStatement)
An expression statement
Iteration(Box<IterationStatement>)
A for statement.
Return(ReturnStatement)
A return statement return expr;.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Statement
 
impl<'de> Deserialize<'de> for Statement
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 From<AssertStatement> for Statement
 
impl From<AssertStatement> for Statement
Source§fn from(value: AssertStatement) -> Self
 
fn from(value: AssertStatement) -> Self
Converts to this type from the input type.
Source§impl From<AssignStatement> for Statement
 
impl From<AssignStatement> for Statement
Source§fn from(value: AssignStatement) -> Self
 
fn from(value: AssignStatement) -> Self
Converts to this type from the input type.
Source§impl From<ConditionalStatement> for Statement
 
impl From<ConditionalStatement> for Statement
Source§fn from(value: ConditionalStatement) -> Self
 
fn from(value: ConditionalStatement) -> Self
Converts to this type from the input type.
Source§impl From<ConstDeclaration> for Statement
 
impl From<ConstDeclaration> for Statement
Source§fn from(value: ConstDeclaration) -> Self
 
fn from(value: ConstDeclaration) -> Self
Converts to this type from the input type.
Source§impl From<DefinitionStatement> for Statement
 
impl From<DefinitionStatement> for Statement
Source§fn from(value: DefinitionStatement) -> Self
 
fn from(value: DefinitionStatement) -> Self
Converts to this type from the input type.
Source§impl From<ExpressionStatement> for Statement
 
impl From<ExpressionStatement> for Statement
Source§fn from(value: ExpressionStatement) -> Self
 
fn from(value: ExpressionStatement) -> Self
Converts to this type from the input type.
Source§impl From<IterationStatement> for Statement
 
impl From<IterationStatement> for Statement
Source§fn from(value: IterationStatement) -> Self
 
fn from(value: IterationStatement) -> Self
Converts to this type from the input type.
Source§impl From<ReturnStatement> for Statement
 
impl From<ReturnStatement> for Statement
Source§fn from(value: ReturnStatement) -> Self
 
fn from(value: ReturnStatement) -> Self
Converts to this type from the input type.
impl Eq for Statement
impl StructuralPartialEq for Statement
Auto Trait Implementations§
impl Freeze for Statement
impl RefUnwindSafe for Statement
impl Send for Statement
impl Sync for Statement
impl Unpin for Statement
impl UnwindSafe for Statement
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,
§impl<'de, T> DeserializeExt<'de> for Twhere
    T: DeserializeOwned,
 
impl<'de, T> DeserializeExt<'de> for Twhere
    T: DeserializeOwned,
fn take_from_value<D>(
    value: &mut Value,
    field: &str,
) -> Result<T, <D as Deserializer<'de>>::Error>where
    D: Deserializer<'de>,
§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.§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>
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§impl<T> Pointable for T
 
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
    T: ?Sized,
 
impl<T> PolicyExt for Twhere
    T: ?Sized,
§impl<T> ToSmolStr for T
 
impl<T> ToSmolStr for T
fn to_smolstr(&self) -> SmolStr
§impl<T> ToStringFallible for Twhere
    T: Display,
 
impl<T> ToStringFallible for Twhere
    T: Display,
§fn try_to_string(&self) -> Result<String, TryReserveError>
 
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.