pub trait IdentityHandle:
Copy
+ Debug
+ PartialEq
+ Eq
+ StdHash { }Expand description
Handle to identify a group member.
Note that this needs to be unique within a group, can be a username, number or preferably a long byte string.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
impl IdentityHandle for &str
Available on crate features
test_utils only.impl IdentityHandle for usize
Available on crate features
test_utils only.