pub struct CustomExpr {
pub inputs: FnArgsVec<Expr>,
pub tokens: FnArgsVec<ImmutableString>,
pub state: Dynamic,
pub scope_may_be_changed: bool,
pub self_terminated: bool,
}Expand description
(internals) A custom syntax expression.
Exported under the internals feature only.
Not available under no_custom_syntax.
Fields§
§inputs: FnArgsVec<Expr>List of keywords.
tokens: FnArgsVec<ImmutableString>List of tokens actually parsed.
state: DynamicState value.
scope_may_be_changed: boolIs the current Scope possibly modified by this custom statement
(e.g. introducing a new variable)?
self_terminated: boolIs this custom syntax self-terminated?
Implementations§
Source§impl CustomExpr
impl CustomExpr
Sourcepub const fn is_self_terminated(&self) -> bool
pub const fn is_self_terminated(&self) -> bool
Is this custom syntax self-terminated (i.e. no need for a semicolon terminator)?
A self-terminated custom syntax always ends in $block$, } or ;
Trait Implementations§
Source§impl Clone for CustomExpr
impl Clone for CustomExpr
Source§fn clone(&self) -> CustomExpr
fn clone(&self) -> CustomExpr
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CustomExpr
impl Debug for CustomExpr
Auto Trait Implementations§
impl Freeze for CustomExpr
impl !RefUnwindSafe for CustomExpr
impl !Send for CustomExpr
impl !Sync for CustomExpr
impl Unpin for CustomExpr
impl !UnwindSafe for CustomExpr
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<T> Variant for T
impl<T> Variant for T
Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert this
Variant trait object to &mut dyn Any.Source§fn as_boxed_any(self: Box<T>) -> Box<dyn Any>
fn as_boxed_any(self: Box<T>) -> Box<dyn Any>
Convert this
Variant trait object to Box<dyn Any>.