pub struct ForNode<'a> {
pub inits: Vec<'a, Node<'a>>,
pub tests: Vec<'a, Node<'a>>,
pub increments: Vec<'a, Node<'a>>,
pub body: Option<Box<'a, Node<'a>>>,
pub body_type: BodyType,
}Fields§
§inits: Vec<'a, Node<'a>>§tests: Vec<'a, Node<'a>>§increments: Vec<'a, Node<'a>>§body: Option<Box<'a, Node<'a>>>§body_type: BodyTypeImplementations§
Trait Implementations§
impl<'a> StructuralPartialEq for ForNode<'a>
Auto Trait Implementations§
impl<'a> Freeze for ForNode<'a>
impl<'a> !RefUnwindSafe for ForNode<'a>
impl<'a> !Send for ForNode<'a>
impl<'a> !Sync for ForNode<'a>
impl<'a> Unpin for ForNode<'a>
impl<'a> !UnwindSafe for ForNode<'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