1 2 3 4 5 6 7
#[derive(Clone, Copy, PartialEq, Debug)] /// [`NetworkDirection`] specifies in which direction the packets can be sent pub enum NetworkDirection { ClientToServer, ServerToClient, Bidirectional, }