pub struct Try {
pub span: Span,
pub body: Vec<Statement>,
pub handlers: Vec<ExceptHandler>,
pub orelse: Vec<Statement>,
pub finalbody: Vec<Statement>,
}
Fields§
§span: Span
§body: Vec<Statement>
§handlers: Vec<ExceptHandler>
§orelse: Vec<Statement>
§finalbody: Vec<Statement>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Try
impl RefUnwindSafe for Try
impl Send for Try
impl Sync for Try
impl Unpin for Try
impl UnwindSafe for Try
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