pub struct QuantumProtocolStack {
pub physical_layer: QuantumPhysicalLayer,
pub link_layer: QuantumLinkLayer,
pub network_layer: QuantumNetworkLayer,
pub transport_layer: QuantumTransportLayer,
pub session_layer: QuantumSessionLayer,
pub application_layer: QuantumApplicationLayer,
}
Expand description
Quantum protocol stack for internet communication
Fields§
§physical_layer: QuantumPhysicalLayer
§link_layer: QuantumLinkLayer
§network_layer: QuantumNetworkLayer
§transport_layer: QuantumTransportLayer
§session_layer: QuantumSessionLayer
§application_layer: QuantumApplicationLayer
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QuantumProtocolStack
impl RefUnwindSafe for QuantumProtocolStack
impl Send for QuantumProtocolStack
impl Sync for QuantumProtocolStack
impl Unpin for QuantumProtocolStack
impl UnwindSafe for QuantumProtocolStack
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