pub trait ConfigSystemUserData<'a> {
// Required method
fn system_user_data(&'a self) -> HashSet<SystemUserData<'a>>;
}Expand description
An interface for returning all SystemUserData tracked by a configuration
implementation.
Required Methods§
Sourcefn system_user_data(&'a self) -> HashSet<SystemUserData<'a>>
fn system_user_data(&'a self) -> HashSet<SystemUserData<'a>>
Returns the list of all SystemUserData.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".