pub struct SuccessHandlerConfig {
pub path: Option<String>,
pub extra_args: Option<HashMap<String, Value>>,
}Expand description
SuccessHandlerConfig : Configuration for the workspace success handler
Fields§
§path: Option<String>Path to the success handler script or flow
extra_args: Option<HashMap<String, Value>>The arguments to pass to the script or flow
Implementations§
Source§impl SuccessHandlerConfig
impl SuccessHandlerConfig
Sourcepub fn new() -> SuccessHandlerConfig
pub fn new() -> SuccessHandlerConfig
Configuration for the workspace success handler
Trait Implementations§
Source§impl Clone for SuccessHandlerConfig
impl Clone for SuccessHandlerConfig
Source§fn clone(&self) -> SuccessHandlerConfig
fn clone(&self) -> SuccessHandlerConfig
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 SuccessHandlerConfig
impl Debug for SuccessHandlerConfig
Source§impl Default for SuccessHandlerConfig
impl Default for SuccessHandlerConfig
Source§fn default() -> SuccessHandlerConfig
fn default() -> SuccessHandlerConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SuccessHandlerConfig
impl<'de> Deserialize<'de> for SuccessHandlerConfig
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 SuccessHandlerConfig
impl PartialEq for SuccessHandlerConfig
Source§impl Serialize for SuccessHandlerConfig
impl Serialize for SuccessHandlerConfig
impl StructuralPartialEq for SuccessHandlerConfig
Auto Trait Implementations§
impl Freeze for SuccessHandlerConfig
impl RefUnwindSafe for SuccessHandlerConfig
impl Send for SuccessHandlerConfig
impl Sync for SuccessHandlerConfig
impl Unpin for SuccessHandlerConfig
impl UnwindSafe for SuccessHandlerConfig
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