Track down scylla inconsistencies

This commit is contained in:
Dominik Werder
2025-06-27 17:34:13 +02:00
parent 72cff94b21
commit 287b906ef9
14 changed files with 399 additions and 168 deletions

View File

@@ -191,6 +191,14 @@ impl From<Vec<u8>> for ToJsonBody {
}
}
impl From<String> for ToJsonBody {
fn from(value: String) -> Self {
Self {
body: value.into_bytes(),
}
}
}
impl<S: Serialize> From<&S> for ToJsonBody {
fn from(value: &S) -> Self {
Self {