commit | b1e8d1c4e4b3bbb24cb7d801a4ef9d3ca4030f50 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Sat Oct 21 03:13:36 2023 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Sat Oct 21 03:13:36 2023 +0000 |
tree | 6f026aabd28100d4c8bcf14785548dc9b0b78ac4 | |
parent | 0da4cfba2d277022c7327fd12fc1bf55f62548c4 [diff] | |
parent | 72e08bb225754a367d72b5caa1f30a8c68394417 [diff] |
Snap for 10985011 from 72e08bb225754a367d72b5caa1f30a8c68394417 to 24D1-release Change-Id: I8043c104fe2ea4dfc8f8ba43b5c1751134383bcf
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.