[][src]Function manuf::vendor

pub fn vendor(addr: EtherAddr) -> Option<(&'static str, &'static str)>

Find vendor name and description base on an ethernet (MAC) address.

Example

assert_eq!(
    manuf::vendor([0x8c, 0x85, 0x90, 0x0b, 0xcb, 0x9e]),
    Some(("Apple", "Apple, Inc."))
);