pub struct WorkflowLimits {
pub fan_out: Option<u32>,
}Expand description
Ceilings a workflow definition is checked against at load time.
Fields§
§fan_out: Option<u32>The most concurrent lanes a foreach/batch body may use. A definition
asking for more is REFUSED at load rather than quietly clamped: silent
clamping is how a workflow ends up running eight-wide while its author
believes it runs fifty, and the whole point of the field whitelist is
that a knob either does what it says or fails loudly.
Trait Implementations§
Source§impl Clone for WorkflowLimits
impl Clone for WorkflowLimits
Source§fn clone(&self) -> WorkflowLimits
fn clone(&self) -> WorkflowLimits
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WorkflowLimits
impl Debug for WorkflowLimits
Source§impl Default for WorkflowLimits
impl Default for WorkflowLimits
Source§fn default() -> WorkflowLimits
fn default() -> WorkflowLimits
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowLimitswhere
WorkflowLimits: Default,
impl<'de> Deserialize<'de> for WorkflowLimitswhere
WorkflowLimits: Default,
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 WorkflowLimits
impl PartialEq for WorkflowLimits
impl StructuralPartialEq for WorkflowLimits
Auto Trait Implementations§
impl Freeze for WorkflowLimits
impl RefUnwindSafe for WorkflowLimits
impl Send for WorkflowLimits
impl Sync for WorkflowLimits
impl Unpin for WorkflowLimits
impl UnsafeUnpin for WorkflowLimits
impl UnwindSafe for WorkflowLimits
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