Trait WhitelistRoles

Source
pub trait WhitelistRoles {
    // Provided methods
    fn whitelist_expiration_extender_role_description() -> String { ... }
    fn whitelist_expiration_setter_role_description() -> String { ... }
    fn indefinite_whitelister_role_description() -> String { ... }
}

Provided Methods§

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.

Implementors§

Source§

impl<Address> WhitelistRoles for DummyWhitelist<Address>
where Address: AsRef<[u8]> + Default + PartialEq + Zero,