commit | 1e3cd5e49cba979e7c0be0e81b50a4df33d89e68 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Tue Sep 10 23:10:51 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Tue Sep 10 23:10:51 2024 +0000 |
tree | c10360f4ef942c7303506406f084b0754de91b0a | |
parent | 2b1ef93d0ccc4bb0039214c849c7820120db1169 [diff] | |
parent | 62be257db90e7f85f8c687f8a3d7183c560a5626 [diff] |
Snap for 12349386 from 62be257db90e7f85f8c687f8a3d7183c560a5626 to sdk-release Change-Id: I4a985dade87d293477a4314cf6450b46f0a2e7aa
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.