pub struct OutputFanoutConfig {
pub max_outputs: u8,
pub max_parallel_outputs: u8,
}Expand description
Bounded output fan-out policy shared by provider adapters.
Fields§
§max_outputs: u8Effective maximum output count advertised by the decorated provider.
max_parallel_outputs: u8Provider-wide maximum simultaneous upstream operations.
Trait Implementations§
Source§impl Clone for OutputFanoutConfig
impl Clone for OutputFanoutConfig
Source§fn clone(&self) -> OutputFanoutConfig
fn clone(&self) -> OutputFanoutConfig
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 OutputFanoutConfig
Source§impl Debug for OutputFanoutConfig
impl Debug for OutputFanoutConfig
impl Eq for OutputFanoutConfig
Source§impl PartialEq for OutputFanoutConfig
impl PartialEq for OutputFanoutConfig
impl StructuralPartialEq for OutputFanoutConfig
Auto Trait Implementations§
impl Freeze for OutputFanoutConfig
impl RefUnwindSafe for OutputFanoutConfig
impl Send for OutputFanoutConfig
impl Sync for OutputFanoutConfig
impl Unpin for OutputFanoutConfig
impl UnsafeUnpin for OutputFanoutConfig
impl UnwindSafe for OutputFanoutConfig
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