pub struct GossipChannelTuning {
pub gossip_receiver_channel_capacity: QueueCapacity,
pub socket_consume_channel_capacity: QueueCapacity,
pub gossip_response_channel_capacity: QueueCapacity,
}Expand description
Gossip queue knobs exposed through SOF’s bundled gossip backend.
Fields§
§gossip_receiver_channel_capacity: QueueCapacityReceiver socket -> gossip request channel capacity.
socket_consume_channel_capacity: QueueCapacitySocket consume channel capacity.
gossip_response_channel_capacity: QueueCapacityGossip response channel capacity.
Trait Implementations§
Source§impl Clone for GossipChannelTuning
impl Clone for GossipChannelTuning
Source§fn clone(&self) -> GossipChannelTuning
fn clone(&self) -> GossipChannelTuning
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 GossipChannelTuning
impl Debug for GossipChannelTuning
Source§impl PartialEq for GossipChannelTuning
impl PartialEq for GossipChannelTuning
impl Copy for GossipChannelTuning
impl Eq for GossipChannelTuning
impl StructuralPartialEq for GossipChannelTuning
Auto Trait Implementations§
impl Freeze for GossipChannelTuning
impl RefUnwindSafe for GossipChannelTuning
impl Send for GossipChannelTuning
impl Sync for GossipChannelTuning
impl Unpin for GossipChannelTuning
impl UnsafeUnpin for GossipChannelTuning
impl UnwindSafe for GossipChannelTuning
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