pub struct HandleOutgoingPacketResult<S> {
pub network_packet: Option<WgKind>,
pub processed_at: Instant,
pub session_data: Arc<S>,
}Expand description
Packet-processing output for callers that need the active session once an outbound payload is accepted into the tunnel pipeline.
Fields§
§network_packet: Option<WgKind>The WireGuard packet to send to the network, if the tunnel emitted one immediately.
processed_at: InstantThe timestamp captured for the authorization check that gated this outgoing packet.
session_data: Arc<S>The session data resolved for the tunneled SCION payload.
Implementations§
Source§impl<S> HandleOutgoingPacketResult<S>
impl<S> HandleOutgoingPacketResult<S>
Sourcepub fn into_packet(self) -> Option<WgKind>
pub fn into_packet(self) -> Option<WgKind>
Converts the result into the immediate network packet, if one exists.
Auto Trait Implementations§
impl<S> Freeze for HandleOutgoingPacketResult<S>
impl<S> RefUnwindSafe for HandleOutgoingPacketResult<S>where
Arc<S>: RefUnwindSafe,
impl<S> Send for HandleOutgoingPacketResult<S>
impl<S> Sync for HandleOutgoingPacketResult<S>
impl<S> Unpin for HandleOutgoingPacketResult<S>
impl<S> UnsafeUnpin for HandleOutgoingPacketResult<S>where
Arc<S>: UnsafeUnpin,
impl<S> UnwindSafe for HandleOutgoingPacketResult<S>where
Arc<S>: UnwindSafe,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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