pub struct TaskCheckConfig {
pub definition_ref: Option<TaskCheckDefinitionReference>,
pub display_name: Option<String>,
pub inputs: Option<Value>,
pub linked_variable_group: Option<String>,
pub retry_interval: Option<i32>,
}
Expand description
Config to facilitate task check
Fields§
§definition_ref: Option<TaskCheckDefinitionReference>
§display_name: Option<String>
§inputs: Option<Value>
§linked_variable_group: Option<String>
§retry_interval: Option<i32>
Implementations§
Trait Implementations§
source§impl Clone for TaskCheckConfig
impl Clone for TaskCheckConfig
source§fn clone(&self) -> TaskCheckConfig
fn clone(&self) -> TaskCheckConfig
Returns a copy 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 TaskCheckConfig
impl Debug for TaskCheckConfig
source§impl Default for TaskCheckConfig
impl Default for TaskCheckConfig
source§fn default() -> TaskCheckConfig
fn default() -> TaskCheckConfig
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TaskCheckConfig
impl<'de> Deserialize<'de> for TaskCheckConfig
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 TaskCheckConfig
impl PartialEq for TaskCheckConfig
source§fn eq(&self, other: &TaskCheckConfig) -> bool
fn eq(&self, other: &TaskCheckConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TaskCheckConfig
impl Serialize for TaskCheckConfig
impl StructuralPartialEq for TaskCheckConfig
Auto Trait Implementations§
impl RefUnwindSafe for TaskCheckConfig
impl Send for TaskCheckConfig
impl Sync for TaskCheckConfig
impl Unpin for TaskCheckConfig
impl UnwindSafe for TaskCheckConfig
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