Struct quinn_proto::congestion::NewReno
source · pub struct NewReno { /* private fields */ }
Expand description
A simple, standard congestion controller
Implementations§
Trait Implementations§
source§impl Controller for NewReno
impl Controller for NewReno
source§fn on_ack(
&mut self,
_now: Instant,
sent: Instant,
bytes: u64,
app_limited: bool,
_rtt: &RttEstimator,
)
fn on_ack( &mut self, _now: Instant, sent: Instant, bytes: u64, app_limited: bool, _rtt: &RttEstimator, )
Packet deliveries were confirmed Read more
source§fn on_congestion_event(
&mut self,
now: Instant,
sent: Instant,
is_persistent_congestion: bool,
_lost_bytes: u64,
)
fn on_congestion_event( &mut self, now: Instant, sent: Instant, is_persistent_congestion: bool, _lost_bytes: u64, )
Packets were deemed lost or marked congested Read more
source§fn on_mtu_update(&mut self, new_mtu: u16)
fn on_mtu_update(&mut self, new_mtu: u16)
The known MTU for the current network path has been updated
source§fn clone_box(&self) -> Box<dyn Controller>
fn clone_box(&self) -> Box<dyn Controller>
Duplicate the controller’s state
source§fn initial_window(&self) -> u64
fn initial_window(&self) -> u64
Initial congestion window
source§fn into_any(self: Box<Self>) -> Box<dyn Any>
fn into_any(self: Box<Self>) -> Box<dyn Any>
Returns Self for use in down-casting to extract implementation details
Auto Trait Implementations§
impl Freeze for NewReno
impl RefUnwindSafe for NewReno
impl Send for NewReno
impl Sync for NewReno
impl Unpin for NewReno
impl UnwindSafe for NewReno
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)