pub trait EUI {
// Required method
fn to_bytes(&self) -> &[u8] ⓘ;
// Provided methods
fn to_canonical_fmt(&self) -> String { ... }
fn to_colon_fmt(&self) -> String { ... }
fn to_dot_fmt(&self) -> String { ... }
}pub trait EUI {
// Required method
fn to_bytes(&self) -> &[u8] ⓘ;
// Provided methods
fn to_canonical_fmt(&self) -> String { ... }
fn to_colon_fmt(&self) -> String { ... }
fn to_dot_fmt(&self) -> String { ... }
}