Update all modules to use registry - part 2

This commit is contained in:
mdecimus
2026-02-10 12:16:47 +01:00
parent cc88715013
commit c4064082ea
37 changed files with 371 additions and 5754 deletions

View File

@@ -185,6 +185,12 @@ impl From<String> for RegistryFilterValue {
}
}
impl From<&str> for RegistryFilterValue {
fn from(value: &str) -> Self {
RegistryFilterValue::String(value.to_string())
}
}
impl From<u64> for RegistryFilterValue {
fn from(value: u64) -> Self {
RegistryFilterValue::Integer(value)