pub struct ProviderStep {
pub id: String,
pub provider: Option<String>,
pub task: String,
pub input: Option<String>,
pub timeout_ms: Option<u64>,
pub retry: RetryPolicy,
}Fields§
§id: String§provider: Option<String>§task: String§input: Option<String>§timeout_ms: Option<u64>§retry: RetryPolicyTrait Implementations§
Source§impl Clone for ProviderStep
impl Clone for ProviderStep
Source§fn clone(&self) -> ProviderStep
fn clone(&self) -> ProviderStep
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 ProviderStep
impl Debug for ProviderStep
Source§impl<'de> Deserialize<'de> for ProviderStep
impl<'de> Deserialize<'de> for ProviderStep
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
Auto Trait Implementations§
impl Freeze for ProviderStep
impl RefUnwindSafe for ProviderStep
impl Send for ProviderStep
impl Sync for ProviderStep
impl Unpin for ProviderStep
impl UnsafeUnpin for ProviderStep
impl UnwindSafe for ProviderStep
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