commit | 72e08bb225754a367d72b5caa1f30a8c68394417 | [log] [tgz] |
---|---|---|
author | Andrew Walbran <[email protected]> | Fri Oct 20 00:08:33 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Fri Oct 20 00:08:33 2023 +0000 |
tree | 6f026aabd28100d4c8bcf14785548dc9b0b78ac4 | |
parent | 88d09a493025651828e2fa924f82dd55db6d9378 [diff] | |
parent | 4bcc020946d2a4c831dee29e9dc52382fb69f93c [diff] |
Migrate to cargo_embargo. am: a45f1d19a0 am: fc235e3b42 am: 4bcc020946 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/macaddr/+/2796279 Change-Id: Idbc7919a05fa2bc8dfa865fd1e10d8cdc7538028 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.