- update: NullTerminatedString now derives Clone and Default

This commit is contained in:
2025-01-05 20:56:32 -05:00
parent fb8f9cccf4
commit 2ef85f85db

View File

@@ -3,7 +3,7 @@ use std::str;
use bincode::de::read::Reader;
use bincode::enc::write::Writer;
#[derive(Debug)]
#[derive(Debug, Clone, Default)]
pub struct NullTerminatedString(pub String);
impl NullTerminatedString {