pub struct QuantumNetworkLayer {
pub quantum_routing: QuantumRouting,
pub congestion_control: QuantumCongestionControl,
pub quality_of_service: QuantumQoS,
pub load_balancing: QuantumLoadBalancing,
}Fields§
§quantum_routing: QuantumRouting§congestion_control: QuantumCongestionControl§quality_of_service: QuantumQoS§load_balancing: QuantumLoadBalancingImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QuantumNetworkLayer
impl RefUnwindSafe for QuantumNetworkLayer
impl Send for QuantumNetworkLayer
impl Sync for QuantumNetworkLayer
impl Unpin for QuantumNetworkLayer
impl UnwindSafe for QuantumNetworkLayer
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more