use uuid::Uuid;
pub fn next_string_lexicographically(payload: String) -> String {
let mut prefix_end = payload.as_bytes().to_vec();
if let Some(last_byte) = prefix_end.last_mut() {
if *last_byte < 0xFF {
*last_byte += 1; } else {
prefix_end.push(0x00); }
}
String::from_utf8_lossy(&prefix_end).to_string()
}
pub fn previous_string_lexicographically(payload: String) -> String {
let mut prefix_end = payload.as_bytes().to_vec();
if let Some(last_byte) = prefix_end.last_mut() {
if *last_byte > 0x00 {
*last_byte -= 1; } else {
prefix_end.pop(); }
}
String::from_utf8_lossy(&prefix_end).to_string()
}