Enum eui48::MacAddressFormat
source · pub enum MacAddressFormat {
Canonical,
HexString,
DotNotation,
Hexadecimal,
}
Expand description
Format to display MacAddress
Variants§
Canonical
Use - notaion
HexString
Use : notation
DotNotation
Use . notation
Hexadecimal
Use 0x notation
Trait Implementations§
source§impl Clone for MacAddressFormat
impl Clone for MacAddressFormat
source§fn clone(&self) -> MacAddressFormat
fn clone(&self) -> MacAddressFormat
Returns a copy 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 moresource§impl Debug for MacAddressFormat
impl Debug for MacAddressFormat
source§impl Hash for MacAddressFormat
impl Hash for MacAddressFormat
source§impl Ord for MacAddressFormat
impl Ord for MacAddressFormat
source§fn cmp(&self, other: &MacAddressFormat) -> Ordering
fn cmp(&self, other: &MacAddressFormat) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<MacAddressFormat> for MacAddressFormat
impl PartialEq<MacAddressFormat> for MacAddressFormat
source§fn eq(&self, other: &MacAddressFormat) -> bool
fn eq(&self, other: &MacAddressFormat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<MacAddressFormat> for MacAddressFormat
impl PartialOrd<MacAddressFormat> for MacAddressFormat
source§fn partial_cmp(&self, other: &MacAddressFormat) -> Option<Ordering>
fn partial_cmp(&self, other: &MacAddressFormat) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for MacAddressFormat
impl Eq for MacAddressFormat
impl StructuralEq for MacAddressFormat
impl StructuralPartialEq for MacAddressFormat
Auto Trait Implementations§
impl RefUnwindSafe for MacAddressFormat
impl Send for MacAddressFormat
impl Sync for MacAddressFormat
impl Unpin for MacAddressFormat
impl UnwindSafe for MacAddressFormat
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