pub struct FanOutReport {
pub evicted: Vec<SocketAddr>,
}Expand description
Report from a completed fan_out_voice call.
Currently carries the list of peers that exceeded the unhealthy
threshold on this tick and should be evicted by the caller. The
endpoint’s run loop consumes this to remove the peer from the
pool and emit a ServerEvent::ClientEvicted event.
Fields§
§evicted: Vec<SocketAddr>Peers that hit the eviction threshold on this fan-out pass.
Trait Implementations§
Source§impl Clone for FanOutReport
impl Clone for FanOutReport
Source§fn clone(&self) -> FanOutReport
fn clone(&self) -> FanOutReport
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 FanOutReport
impl Debug for FanOutReport
Source§impl Default for FanOutReport
impl Default for FanOutReport
Source§fn default() -> FanOutReport
fn default() -> FanOutReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FanOutReport
impl RefUnwindSafe for FanOutReport
impl Send for FanOutReport
impl Sync for FanOutReport
impl Unpin for FanOutReport
impl UnwindSafe for FanOutReport
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