pub trait UpdateValueSet: Send + 'static {
// Required method
fn into_update_values(self) -> UpdateValues;
}Expand description
Converts a user-provided input into executable update values.
Required Methods§
fn into_update_values(self) -> UpdateValues
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".