pub enum SearchConcurrencySource {
FleetLimit,
Default,
}Expand description
Where a search’s live-worker ceiling came from.
Variants§
FleetLimit
Resolved from the host’s Fleet concurrency configuration.
Default
No Fleet limit resolved, so WORKFLOW_SEARCH_DEFAULT_MAX_CONCURRENT
applied.
Trait Implementations§
Source§impl Clone for SearchConcurrencySource
impl Clone for SearchConcurrencySource
Source§fn clone(&self) -> SearchConcurrencySource
fn clone(&self) -> SearchConcurrencySource
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 moreimpl Copy for SearchConcurrencySource
Source§impl Debug for SearchConcurrencySource
impl Debug for SearchConcurrencySource
Source§impl Default for SearchConcurrencySource
impl Default for SearchConcurrencySource
Source§fn default() -> SearchConcurrencySource
fn default() -> SearchConcurrencySource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SearchConcurrencySource
impl<'de> Deserialize<'de> for SearchConcurrencySource
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
impl Eq for SearchConcurrencySource
Source§impl PartialEq for SearchConcurrencySource
impl PartialEq for SearchConcurrencySource
Source§impl Serialize for SearchConcurrencySource
impl Serialize for SearchConcurrencySource
impl StructuralPartialEq for SearchConcurrencySource
Auto Trait Implementations§
impl Freeze for SearchConcurrencySource
impl RefUnwindSafe for SearchConcurrencySource
impl Send for SearchConcurrencySource
impl Sync for SearchConcurrencySource
impl Unpin for SearchConcurrencySource
impl UnsafeUnpin for SearchConcurrencySource
impl UnwindSafe for SearchConcurrencySource
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