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