pub struct DeclarativeOnException {
pub kind: Option<String>,
pub message_contains: Option<String>,
pub retry: Option<DeclarativeRedeliveryPolicy>,
pub steps: Vec<DeclarativeStep>,
pub handled: Option<bool>,
pub continued: Option<bool>,
}Fields§
§kind: Option<String>§message_contains: Option<String>§retry: Option<DeclarativeRedeliveryPolicy>§steps: Vec<DeclarativeStep>§handled: Option<bool>§continued: Option<bool>Trait Implementations§
Source§impl Clone for DeclarativeOnException
impl Clone for DeclarativeOnException
Source§fn clone(&self) -> DeclarativeOnException
fn clone(&self) -> DeclarativeOnException
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 DeclarativeOnException
impl Debug for DeclarativeOnException
Source§impl PartialEq for DeclarativeOnException
impl PartialEq for DeclarativeOnException
impl StructuralPartialEq for DeclarativeOnException
Auto Trait Implementations§
impl Freeze for DeclarativeOnException
impl RefUnwindSafe for DeclarativeOnException
impl Send for DeclarativeOnException
impl Sync for DeclarativeOnException
impl Unpin for DeclarativeOnException
impl UnsafeUnpin for DeclarativeOnException
impl UnwindSafe for DeclarativeOnException
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