pub struct CompFor<'a> {
pub target: AssignTargetExpression<'a>,
pub iter: Expression<'a>,
pub ifs: Vec<CompIf<'a>>,
pub inner_for_in: Option<Box<CompFor<'a>>>,
pub asynchronous: Option<Asynchronous<'a>>,
pub whitespace_before: ParenthesizableWhitespace<'a>,
pub whitespace_after_for: ParenthesizableWhitespace<'a>,
pub whitespace_before_in: ParenthesizableWhitespace<'a>,
pub whitespace_after_in: ParenthesizableWhitespace<'a>,
}
Fields§
§target: AssignTargetExpression<'a>
§iter: Expression<'a>
§ifs: Vec<CompIf<'a>>
§inner_for_in: Option<Box<CompFor<'a>>>
§asynchronous: Option<Asynchronous<'a>>
§whitespace_before: ParenthesizableWhitespace<'a>
§whitespace_after_for: ParenthesizableWhitespace<'a>
§whitespace_before_in: ParenthesizableWhitespace<'a>
§whitespace_after_in: ParenthesizableWhitespace<'a>
Trait Implementations§
impl<'a> Eq for CompFor<'a>
impl<'a> StructuralPartialEq for CompFor<'a>
Auto Trait Implementations§
impl<'a> Freeze for CompFor<'a>
impl<'a> RefUnwindSafe for CompFor<'a>
impl<'a> Send for CompFor<'a>
impl<'a> Sync for CompFor<'a>
impl<'a> Unpin for CompFor<'a>
impl<'a> UnwindSafe for CompFor<'a>
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