#[repr(C)]pub struct Continue {
pub continue: Keyword,
pub level: Option<Expression>,
pub terminator: Terminator,
}Expand description
Represents a continue statement in PHP.
Example:
<?php
for ($i = 0; $i < 10; $i++) {
if ($i === 5) {
continue;
}
}Fields§
§continue: Keyword§level: Option<Expression>§terminator: TerminatorTrait Implementations§
Source§impl<'de> Deserialize<'de> for Continue
impl<'de> Deserialize<'de> for Continue
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 Ord for Continue
impl Ord for Continue
Source§impl PartialOrd for Continue
impl PartialOrd for Continue
impl Eq for Continue
impl StructuralPartialEq for Continue
Auto Trait Implementations§
impl Freeze for Continue
impl RefUnwindSafe for Continue
impl Send for Continue
impl Sync for Continue
impl Unpin for Continue
impl UnwindSafe for Continue
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