Spam filter performance and accuracy improvements (part 2)

This commit is contained in:
mdecimus
2025-11-30 18:28:27 +01:00
parent 05ef5a7c10
commit 53a04ce069
59 changed files with 961 additions and 1004 deletions

View File

@@ -35,6 +35,12 @@ impl From<CompactString> for Value {
}
}
impl From<Box<str>> for Value {
fn from(value: Box<str>) -> Self {
Self::String(CompactString::from(value))
}
}
impl From<u64> for Value {
fn from(value: u64) -> Self {
Self::UInt(value)