pub struct PriorityBandedConnectionPolicy {
pub bands: Vec<PriorityBand>,
}Expand description
PriorityBandedConnectionPolicy (RT-CORBA §5.8): multiple bands, each with
its own connection — requests travel over the connection of their band
(prevents priority inversion on a shared connection).
Fields§
§bands: Vec<PriorityBand>The configured bands.
Implementations§
Trait Implementations§
Source§impl Clone for PriorityBandedConnectionPolicy
impl Clone for PriorityBandedConnectionPolicy
Source§fn clone(&self) -> PriorityBandedConnectionPolicy
fn clone(&self) -> PriorityBandedConnectionPolicy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PriorityBandedConnectionPolicy
impl RefUnwindSafe for PriorityBandedConnectionPolicy
impl Send for PriorityBandedConnectionPolicy
impl Sync for PriorityBandedConnectionPolicy
impl Unpin for PriorityBandedConnectionPolicy
impl UnsafeUnpin for PriorityBandedConnectionPolicy
impl UnwindSafe for PriorityBandedConnectionPolicy
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