Bug: 182952190

Clone this repo:
  1. 62be257 Migrate 25 crates to monorepo. am: 7fd5c20033 by James Farrell · 5 months ago main master
  2. 7fd5c20 Migrate 25 crates to monorepo. by James Farrell · 5 months ago main-16k
  3. 20323d4 Update Android.bp by running cargo_embargo am: ca4008b873 by James Farrell · 6 months ago
  4. ca4008b Update Android.bp by running cargo_embargo by James Farrell · 6 months ago
  5. 04471c3 Update Android.bp by running cargo_embargo am: 8b4931365a am: f633e33606 by James Farrell · 8 months ago android15-tests-dev

macaddr

MAC address types for Rust

Latest Version Latest Version Build Status Coverage Status Minimum rustc version Apache 2.0 OR MIT licensed unsafe forbidden

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!

Installation

Add this to your Cargo.toml

[dependencies]
macaddr = "1.0"

Usage

Check out the documentation for each type available, all of them have a plenty of examples.

License

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.