pub struct ViaAddress {
pub nic: String,
pub port: String,
}
Expand description
A combination of NIC name and port.
Fields§
§nic: String
A text string that represents the VIA network interface card (NIC) identifier. VIANIC SHOULD be a valid VIA Adapter NIC number [VIA2002].
port: String
A text string that represents the decimal value of the VIA NIC’s port. VIAPORT SHOULD be a valid VIA Adapter port number [VIA2002].
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ViaAddress
impl RefUnwindSafe for ViaAddress
impl Send for ViaAddress
impl Sync for ViaAddress
impl Unpin for ViaAddress
impl UnwindSafe for ViaAddress
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