pub struct HostEntry {
pub name: String,
pub address: String,
pub port: u16,
}Expand description
A resolved reflector host entry.
Fields§
§name: StringReflector name (e.g. “REF030”).
address: StringHostname or IP address.
port: u16UDP port number.
Trait Implementations§
impl Eq for HostEntry
impl StructuralPartialEq for HostEntry
Auto Trait Implementations§
impl Freeze for HostEntry
impl RefUnwindSafe for HostEntry
impl Send for HostEntry
impl Sync for HostEntry
impl Unpin for HostEntry
impl UnwindSafe for HostEntry
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