Struct QoSCharacteristics
pub struct QoSCharacteristics {
pub expected_latency: Duration,
pub reliability: f64,
pub throughput_impact: f64,
}Expand description
QoS characteristics
Fields§
§expected_latency: DurationExpected latency
reliability: f64Reliability score (0.0 to 1.0)
throughput_impact: f64Throughput impact factor
Trait Implementations§
§impl Clone for QoSCharacteristics
impl Clone for QoSCharacteristics
§fn clone(&self) -> QoSCharacteristics
fn clone(&self) -> QoSCharacteristics
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 moreAuto Trait Implementations§
impl Freeze for QoSCharacteristics
impl RefUnwindSafe for QoSCharacteristics
impl Send for QoSCharacteristics
impl Sync for QoSCharacteristics
impl Unpin for QoSCharacteristics
impl UnwindSafe for QoSCharacteristics
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