pub enum PingJourney {
SentByActor,
RecievedByClientWriter,
RecievedByServerReader,
RecievedByServerRouter,
RecievedByServerWriter,
RecievedByClientReader,
RecievedByClientRouter,
RecievedByActor,
}
Expand description
The journey of a ping message.
This is used to log the journey of a ping message through the server.
§Fields
SentByActor
: the ping message was sent by the inital ping actorRecievedByClientWriter
: the ping message was recieved by the client writer to be sent to the serverRecievedByServerReader
: the ping message was recieved by the server reader to be sent to the server routerRecievedByServerRouter
: the ping message was recieved by the server router to be sent to the server writerRecievedByServerWriter
: the ping message was recieved by the server writer to be sent to the client readerRecievedByClientReader
: the ping message was recieved by the client reader to be sent to the client routerRecievedByClientRouter
: the ping message was recieved by the client router to be sent to the inital ping actorRecievedByActor
: the ping message was recieved by the inital ping actor
Variants§
SentByActor
RecievedByClientWriter
RecievedByServerReader
RecievedByServerRouter
RecievedByServerWriter
RecievedByClientReader
RecievedByClientRouter
RecievedByActor
Implementations§
Auto Trait Implementations§
impl Freeze for PingJourney
impl RefUnwindSafe for PingJourney
impl Send for PingJourney
impl Sync for PingJourney
impl Unpin for PingJourney
impl UnwindSafe for PingJourney
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