[][src]Struct python_parser::ast::Try

pub struct Try {
    pub try_block: Vec<Statement>,
    pub except_clauses: Vec<(Expression, Option<Name>, Vec<Statement>)>,
    pub last_except: Vec<Statement>,
    pub else_block: Vec<Statement>,
    pub finally_block: Vec<Statement>,
}

A try block.

Fields

try_block: Vec<Statement>except_clauses: Vec<(Expression, Option<Name>, Vec<Statement>)>

except 1 [as 2]: 3

last_except: Vec<Statement>

Empty iff no except: clause.

else_block: Vec<Statement>

Empty iff no else: clause.

finally_block: Vec<Statement>

Empty iff no finally: clause.

Trait Implementations

impl Clone for Try[src]

impl Debug for Try[src]

impl PartialEq<Try> for Try[src]

impl StructuralPartialEq for Try[src]

Auto Trait Implementations

impl RefUnwindSafe for Try

impl Send for Try

impl Sync for Try

impl Unpin for Try

impl UnwindSafe for Try

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.