pub trait HasPolicyId { type Id: PolicyId; // Required method fn id(&self) -> Self::Id; }
Trait for policy elements that have a strongly-typed policy identifier.