pub struct TryCatchStmt {
pub body: Box<[Stmt]>,
pub catches: Box<[CatchClause]>,
pub finally: Option<Box<[Stmt]>>,
}Fields§
§body: Box<[Stmt]>§catches: Box<[CatchClause]>§finally: Option<Box<[Stmt]>>Trait Implementations§
Source§impl Clone for TryCatchStmt
impl Clone for TryCatchStmt
Source§fn clone(&self) -> TryCatchStmt
fn clone(&self) -> TryCatchStmt
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TryCatchStmt
impl Debug for TryCatchStmt
Auto Trait Implementations§
impl Freeze for TryCatchStmt
impl RefUnwindSafe for TryCatchStmt
impl Send for TryCatchStmt
impl Sync for TryCatchStmt
impl Unpin for TryCatchStmt
impl UnsafeUnpin for TryCatchStmt
impl UnwindSafe for TryCatchStmt
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