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