pub struct Request {
pub local_addr: String,
pub remote_addr: String,
pub packet: Packet,
}Expand description
Represents a RADIUS request received by the server.
Contains metadata about the client connection and the parsed RADIUS packet.
Fields§
§local_addr: StringLocal socket address (IP:port) of the server that received the request.
remote_addr: StringRemote socket address (IP:port) of the client sending the request.
packet: PacketParsed RADIUS packet for this request.
Auto Trait Implementations§
impl Freeze for Request
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnwindSafe for Request
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