pub struct EditErrorHandlerLegacy {
pub error_handler: Option<String>,
pub error_handler_extra_args: Option<HashMap<String, Value>>,
pub error_handler_muted_on_cancel: Option<bool>,
}Expand description
EditErrorHandlerLegacy : Legacy flat format for editing error handler (deprecated, use new format)
Fields§
§error_handler: Option<String>Path to the error handler script or flow
error_handler_extra_args: Option<HashMap<String, Value>>The arguments to pass to the script or flow
error_handler_muted_on_cancel: Option<bool>Implementations§
Source§impl EditErrorHandlerLegacy
impl EditErrorHandlerLegacy
Sourcepub fn new() -> EditErrorHandlerLegacy
pub fn new() -> EditErrorHandlerLegacy
Legacy flat format for editing error handler (deprecated, use new format)
Trait Implementations§
Source§impl Clone for EditErrorHandlerLegacy
impl Clone for EditErrorHandlerLegacy
Source§fn clone(&self) -> EditErrorHandlerLegacy
fn clone(&self) -> EditErrorHandlerLegacy
Returns a duplicate of the value. Read more
1.0.0 · 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 EditErrorHandlerLegacy
impl Debug for EditErrorHandlerLegacy
Source§impl Default for EditErrorHandlerLegacy
impl Default for EditErrorHandlerLegacy
Source§fn default() -> EditErrorHandlerLegacy
fn default() -> EditErrorHandlerLegacy
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EditErrorHandlerLegacy
impl<'de> Deserialize<'de> for EditErrorHandlerLegacy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EditErrorHandlerLegacy
impl PartialEq for EditErrorHandlerLegacy
Source§impl Serialize for EditErrorHandlerLegacy
impl Serialize for EditErrorHandlerLegacy
impl StructuralPartialEq for EditErrorHandlerLegacy
Auto Trait Implementations§
impl Freeze for EditErrorHandlerLegacy
impl RefUnwindSafe for EditErrorHandlerLegacy
impl Send for EditErrorHandlerLegacy
impl Sync for EditErrorHandlerLegacy
impl Unpin for EditErrorHandlerLegacy
impl UnwindSafe for EditErrorHandlerLegacy
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