[−][src]Struct eui48::MacAddress
A MAC address (EUI-48)
Implementations
impl MacAddress
[src][−]
pub const fn new(eui: Eui48) -> MacAddress
[src][−]
Create a new MacAddress from [u8; 6]
.
pub fn from_bytes(bytes: &[u8]) -> Result<Self, ParseError>
[src][−]
Create a new MacAddress from a byte slice.
Returns an error (without any description) if the slice doesn't have the proper length.
pub fn nil() -> MacAddress
[src][−]
Returns empty EUI-48 address
pub fn broadcast() -> MacAddress
[src][−]
Returns 'ff:ff:ff:ff:ff:ff', a MAC broadcast address
pub fn is_nil(&self) -> bool
[src][−]
Returns true if the address is '00:00:00:00:00:00'
pub fn is_broadcast(&self) -> bool
[src][−]
Returns true if the address is 'ff:ff:ff:ff:ff:ff'
pub fn is_unicast(&self) -> bool
[src][−]
Returns true if bit 1 of Y is 0 in address 'xY:xx:xx:xx:xx:xx'
pub fn is_multicast(&self) -> bool
[src][−]
Returns true if bit 1 of Y is 1 in address 'xY:xx:xx:xx:xx:xx'
pub fn is_universal(&self) -> bool
[src][−]
Returns true if bit 2 of Y is 0 in address 'xY:xx:xx:xx:xx:xx'
pub fn is_local(&self) -> bool
[src][−]
Returns true if bit 2 of Y is 1 in address 'xY:xx:xx:xx:xx:xx'
pub fn to_canonical(&self) -> String
[src][−]
Returns a String representation in the format '00-00-00-00-00-00'
pub fn to_hex_string(&self) -> String
[src][−]
Returns a String representation in the format '00:00:00:00:00:00'
pub fn to_dot_string(&self) -> String
[src][−]
Returns a String representation in the format '0000.0000.0000'
pub fn to_hexadecimal(&self) -> String
[src][−]
Returns a String representation in the format '0x000000000000'
pub fn to_interfaceid(&self) -> String
[src][−]
Returns a String representation in the EUI-64 interface ID format '0000:00ff:fe00:0000'
pub fn to_link_local(&self) -> String
[src][−]
Returns a String representation in the IPv6 link local format 'fe80::0000:00ff:fe00:0000'
pub fn to_string(&self, fmt: MacAddressFormat) -> String
[src][−]
Returns a String in the format selected by fmt
pub fn parse_str(s: &str) -> Result<MacAddress, ParseError>
[src][−]
Parses a String representation from any format supported
pub fn as_bytes(&self) -> &[u8]
[src][−]
Return the internal structure as a slice of bytes
pub fn to_array(&self) -> Eui48
[src][−]
Returns an array in Eui48. Works as an inverse function of new()
pub fn get_display_format() -> MacAddressFormat
[src][−]
Returns Display MacAddressFormat, determined at compile time.
Trait Implementations
impl Clone for MacAddress
[src][+]
impl Copy for MacAddress
[src]
impl Debug for MacAddress
[src][+]
impl Decodable for MacAddress
[src][+]
impl Default for MacAddress
[src][+]
impl<'de> Deserialize<'de> for MacAddress
[src][+]
impl Display for MacAddress
[src][+]
impl Encodable for MacAddress
[src][+]
impl Eq for MacAddress
[src]
impl FromStr for MacAddress
[src][+]
impl Hash for MacAddress
[src][+]
impl Ord for MacAddress
[src][+]
impl PartialEq<MacAddress> for MacAddress
[src][+]
impl PartialOrd<MacAddress> for MacAddress
[src][+]
impl Serialize for MacAddress
[src][+]
impl StructuralEq for MacAddress
[src]
impl StructuralPartialEq for MacAddress
[src]
Auto Trait Implementations
impl RefUnwindSafe for MacAddress
impl Send for MacAddress
impl Sync for MacAddress
impl Unpin for MacAddress
impl UnwindSafe for MacAddress
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T> ToString for T where
T: Display + ?Sized,
[src][+]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,