pub struct DoTryCatchClauseDef {
pub exception: Option<Vec<String>>,
pub when: Option<LanguageExpressionDef>,
pub on_when: Option<LanguageExpressionDef>,
pub disposition: ExceptionDisposition,
pub steps: Vec<DeclarativeStep>,
}Fields§
§exception: Option<Vec<String>>§when: Option<LanguageExpressionDef>§on_when: Option<LanguageExpressionDef>§disposition: ExceptionDisposition§steps: Vec<DeclarativeStep>Trait Implementations§
Source§impl Clone for DoTryCatchClauseDef
impl Clone for DoTryCatchClauseDef
Source§fn clone(&self) -> DoTryCatchClauseDef
fn clone(&self) -> DoTryCatchClauseDef
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 DoTryCatchClauseDef
impl Debug for DoTryCatchClauseDef
Source§impl PartialEq for DoTryCatchClauseDef
impl PartialEq for DoTryCatchClauseDef
impl StructuralPartialEq for DoTryCatchClauseDef
Auto Trait Implementations§
impl Freeze for DoTryCatchClauseDef
impl RefUnwindSafe for DoTryCatchClauseDef
impl Send for DoTryCatchClauseDef
impl Sync for DoTryCatchClauseDef
impl Unpin for DoTryCatchClauseDef
impl UnsafeUnpin for DoTryCatchClauseDef
impl UnwindSafe for DoTryCatchClauseDef
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