commit | 5f93fd47c495d44484b47b3d16560183ff85e4da | [log] [tgz] |
---|---|---|
author | Yi Kong <[email protected]> | Wed Mar 17 21:00:56 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Mar 17 21:00:56 2021 +0000 |
tree | 6b3f5ff8baf0cbcc19348b1807210b1239d10890 | |
parent | e84aa2e5214494bbf7c449026922a449454a503b [diff] | |
parent | fa024426499dec90254dafc770a373b5c7820698 [diff] |
Import 'macaddr' crate version 1.0.1 am: 87d8889fe2 am: 528645dec9 am: ccdcc7c16e am: fa02442649 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/macaddr/+/1641879 Change-Id: If10bbe3cd0b17a20247cb6ede46d6cfa795e04a9
MAC address types for Rust
This crate provides types for a MAC address identifiers, both in IEEE EUI-48 and EUI-64 formats.
It is like a std::net::SocketAddr
enum with a std::net::SocketAddrV4
and std::net::SocketAddrV6
members, but for MAC addresses instead.
Obviously, MAC address can be represented as a [u8; 6]
or [u8; 8]
, but it is error-prone and inconvenient, so here they are — MacAddr6 and MacAddr8 structs with helpful methods and standard Rust traits implementations, intended to be the first-class Rust objects.
And it is serde
- and no_std
-friendly also!
Add this to your Cargo.toml
[dependencies] macaddr = "1.0"
Check out the documentation for each type available, all of them have a plenty of examples.
Licensed under either of Apache License 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.