pub struct PendingGossipQueuePlan {
pub gossip_receiver_channel_capacity: QueueCapacity,
pub socket_consume_channel_capacity: QueueCapacity,
pub gossip_response_channel_capacity: QueueCapacity,
pub fanout: ReceiverFanoutProfile,
}Expand description
Gossip queue budget exposed as a compact planning view.
Fields§
§gossip_receiver_channel_capacity: QueueCapacityTarget gossip receiver queue capacity.
socket_consume_channel_capacity: QueueCapacityTarget socket consume queue capacity.
gossip_response_channel_capacity: QueueCapacityTarget gossip response queue capacity.
fanout: ReceiverFanoutProfileDesired receiver fanout profile for future integration.
Trait Implementations§
Source§impl Clone for PendingGossipQueuePlan
impl Clone for PendingGossipQueuePlan
Source§fn clone(&self) -> PendingGossipQueuePlan
fn clone(&self) -> PendingGossipQueuePlan
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 PendingGossipQueuePlan
impl Debug for PendingGossipQueuePlan
Source§impl PartialEq for PendingGossipQueuePlan
impl PartialEq for PendingGossipQueuePlan
impl Copy for PendingGossipQueuePlan
impl Eq for PendingGossipQueuePlan
impl StructuralPartialEq for PendingGossipQueuePlan
Auto Trait Implementations§
impl Freeze for PendingGossipQueuePlan
impl RefUnwindSafe for PendingGossipQueuePlan
impl Send for PendingGossipQueuePlan
impl Sync for PendingGossipQueuePlan
impl Unpin for PendingGossipQueuePlan
impl UnsafeUnpin for PendingGossipQueuePlan
impl UnwindSafe for PendingGossipQueuePlan
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