pub struct PhpWhile {
pub condition: Box<PhpExpression>,
pub statement: Box<PhpStatement>,
}Expand description
PHP while 语句
Fields§
§condition: Box<PhpExpression>§statement: Box<PhpStatement>Trait Implementations§
Source§impl<'de> Deserialize<'de> for PhpWhile
impl<'de> Deserialize<'de> for PhpWhile
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
impl StructuralPartialEq for PhpWhile
Auto Trait Implementations§
impl Freeze for PhpWhile
impl RefUnwindSafe for PhpWhile
impl Send for PhpWhile
impl Sync for PhpWhile
impl Unpin for PhpWhile
impl UnwindSafe for PhpWhile
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