pub struct PhpCatch {
pub types: Vec<String>,
pub variable: PhpVariable,
pub statement: Box<PhpStatement>,
}Expand description
PHP catch 语句
Fields§
§types: Vec<String>§variable: PhpVariable§statement: Box<PhpStatement>Trait Implementations§
Source§impl<'de> Deserialize<'de> for PhpCatch
impl<'de> Deserialize<'de> for PhpCatch
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 PhpCatch
Auto Trait Implementations§
impl Freeze for PhpCatch
impl RefUnwindSafe for PhpCatch
impl Send for PhpCatch
impl Sync for PhpCatch
impl Unpin for PhpCatch
impl UnwindSafe for PhpCatch
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