pub enum TimeoutAction {
Fail,
Skip,
UseDefault(String),
}Expand description
Action to take when a timeout occurs
Variants§
Fail
Fail the node execution (default)
Skip
Skip this node and continue with default/empty output
UseDefault(String)
Use a default value for the output
Trait Implementations§
Source§impl Clone for TimeoutAction
impl Clone for TimeoutAction
Source§fn clone(&self) -> TimeoutAction
fn clone(&self) -> TimeoutAction
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 TimeoutAction
impl Debug for TimeoutAction
Source§impl Default for TimeoutAction
impl Default for TimeoutAction
Source§fn default() -> TimeoutAction
fn default() -> TimeoutAction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimeoutAction
impl<'de> Deserialize<'de> for TimeoutAction
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 TimeoutAction
impl PartialEq for TimeoutAction
Source§impl Serialize for TimeoutAction
impl Serialize for TimeoutAction
impl Eq for TimeoutAction
impl StructuralPartialEq for TimeoutAction
Auto Trait Implementations§
impl Freeze for TimeoutAction
impl RefUnwindSafe for TimeoutAction
impl Send for TimeoutAction
impl Sync for TimeoutAction
impl Unpin for TimeoutAction
impl UnwindSafe for TimeoutAction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.