pub struct RemoteAddr {
pub ip_address: String,
pub port: u16,
}Expand description
Remote server address (IP and port).
See: https://playwright.dev/docs/api/class-response#response-server-addr
Fields§
§ip_address: StringServer IP address.
port: u16Server port.
Trait Implementations§
Source§impl Clone for RemoteAddr
impl Clone for RemoteAddr
Source§fn clone(&self) -> RemoteAddr
fn clone(&self) -> RemoteAddr
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RemoteAddr
impl RefUnwindSafe for RemoteAddr
impl Send for RemoteAddr
impl Sync for RemoteAddr
impl Unpin for RemoteAddr
impl UnsafeUnpin for RemoteAddr
impl UnwindSafe for RemoteAddr
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