| commit | f633e3360637162de1b1c57fb3a63ff13292a212 | [log] [tgz] |
|---|---|---|
| author | James Farrell <[email protected]> | Tue May 21 14:38:10 2024 +0000 |
| committer | Automerger Merge Worker <[email protected]> | Tue May 21 14:38:10 2024 +0000 |
| tree | b3d701e806a3be7024eb831d3a50783535447a1d | |
| parent | b69e3c7be4448ca6f8bfa20b0693ef68525022ca [diff] | |
| parent | 8b4931365a7d7418141c6799093572372774f839 [diff] |
Update Android.bp by running cargo_embargo am: 8b4931365a Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/macaddr/+/3095587 Change-Id: Ie8116971cc2cae3168b47f4459a92c9b13969569 Signed-off-by: Automerger Merge Worker <[email protected]>
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.