Struct symboscript_types::parser::ForStatement
source · pub struct ForStatement {
pub node: Node,
pub init: Statement,
pub test: Expression,
pub update: Expression,
pub body: Vec<Statement>,
}Fields§
§node: Node§init: Statement§test: Expression§update: Expression§body: Vec<Statement>Trait Implementations§
source§impl Clone for ForStatement
impl Clone for ForStatement
source§fn clone(&self) -> ForStatement
fn clone(&self) -> ForStatement
Returns a copy 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 ForStatement
impl Debug for ForStatement
source§impl<'de> Deserialize<'de> for ForStatement
impl<'de> Deserialize<'de> for ForStatement
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 Display for ForStatement
impl Display for ForStatement
Auto Trait Implementations§
impl RefUnwindSafe for ForStatement
impl Send for ForStatement
impl Sync for ForStatement
impl Unpin for ForStatement
impl UnwindSafe for ForStatement
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