pub struct ForInStatement {
pub variable: String,
pub iterable: String,
pub body: Vec<FlowStep>,
pub loc: Loc,
}Fields§
§variable: String§iterable: String§body: Vec<FlowStep>§loc: LocTrait Implementations§
Auto Trait Implementations§
impl Freeze for ForInStatement
impl RefUnwindSafe for ForInStatement
impl Send for ForInStatement
impl Sync for ForInStatement
impl Unpin for ForInStatement
impl UnsafeUnpin for ForInStatement
impl UnwindSafe for ForInStatement
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