[−][src]Struct darklua_core::nodes::NumericForStatement
Methods
impl NumericForStatement[src]
pub fn new(
identifier: String,
start: Expression,
end: Expression,
step: Option<Expression>,
block: Block
) -> Self[src]
identifier: String,
start: Expression,
end: Expression,
step: Option<Expression>,
block: Block
) -> Self
pub fn get_block(&self) -> &Block[src]
pub fn mutate_block(&mut self) -> &mut Block[src]
pub fn mutate_start(&mut self) -> &mut Expression[src]
pub fn mutate_end(&mut self) -> &mut Expression[src]
pub fn mutate_step(&mut self) -> &mut Option<Expression>[src]
pub fn get_identifier(&self) -> &String[src]
pub fn mutate_identifier(&mut self) -> &mut String[src]
pub fn set_identifier<S: Into<String>>(&mut self, identifier: S)[src]
Trait Implementations
impl Clone for NumericForStatement[src]
fn clone(&self) -> NumericForStatement[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for NumericForStatement[src]
impl Eq for NumericForStatement[src]
impl From<(String, Expression, Expression, Option<Expression>, Block)> for NumericForStatement[src]
fn from(
(identifier, start, end, step, block): (String, Expression, Expression, Option<Expression>, Block)
) -> Self[src]
(identifier, start, end, step, block): (String, Expression, Expression, Option<Expression>, Block)
) -> Self
impl From<NumericForStatement> for Statement[src]
fn from(numeric_for: NumericForStatement) -> Statement[src]
impl PartialEq<NumericForStatement> for NumericForStatement[src]
fn eq(&self, other: &NumericForStatement) -> bool[src]
fn ne(&self, other: &NumericForStatement) -> bool[src]
impl StructuralEq for NumericForStatement[src]
impl StructuralPartialEq for NumericForStatement[src]
impl ToLua for NumericForStatement[src]
fn to_lua(&self, generator: &mut LuaGenerator)[src]
fn to_lua_string(&self) -> String[src]
Auto Trait Implementations
impl RefUnwindSafe for NumericForStatement
impl Send for NumericForStatement
impl Sync for NumericForStatement
impl Unpin for NumericForStatement
impl UnwindSafe for NumericForStatement
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,