pub struct OuiEntry {
pub name_short: String,
pub name_long: Option<String>,
pub comment: Option<String>,
}Expand description
OUI entry
Fields§
§name_short: StringWireshark’s short name identifier for the organization [REQUIRED]
name_long: Option<String>Organization full name (usually present) [OPTIONAL]
comment: Option<String>Wireshark comment field [OPTIONAL]
Trait Implementations§
Source§impl<'de> Deserialize<'de> for OuiEntry
impl<'de> Deserialize<'de> for OuiEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for OuiEntry
impl StructuralPartialEq for OuiEntry
Auto Trait Implementations§
impl Freeze for OuiEntry
impl RefUnwindSafe for OuiEntry
impl Send for OuiEntry
impl Sync for OuiEntry
impl Unpin for OuiEntry
impl UnwindSafe for OuiEntry
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