pub struct ConcurrencyLimitConfig {
pub name: String,
pub queue: String,
pub max_concurrent: u64,
pub on_saturated: SaturationStrategy,
}Fields§
§name: String§queue: String§max_concurrent: u64§on_saturated: SaturationStrategyTrait Implementations§
Source§impl Clone for ConcurrencyLimitConfig
impl Clone for ConcurrencyLimitConfig
Source§fn clone(&self) -> ConcurrencyLimitConfig
fn clone(&self) -> ConcurrencyLimitConfig
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 ConcurrencyLimitConfig
impl Debug for ConcurrencyLimitConfig
impl Eq for ConcurrencyLimitConfig
Source§impl PartialEq for ConcurrencyLimitConfig
impl PartialEq for ConcurrencyLimitConfig
impl StructuralPartialEq for ConcurrencyLimitConfig
Auto Trait Implementations§
impl Freeze for ConcurrencyLimitConfig
impl RefUnwindSafe for ConcurrencyLimitConfig
impl Send for ConcurrencyLimitConfig
impl Sync for ConcurrencyLimitConfig
impl Unpin for ConcurrencyLimitConfig
impl UnsafeUnpin for ConcurrencyLimitConfig
impl UnwindSafe for ConcurrencyLimitConfig
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