pub trait SerializableString {
    fn serialized_size(&self) -> usize;
    fn serialize(&self, bytes: &mut [u8]);
}
Expand description

Anything that implements SerializableString can be written to a StringTable.

Required Methods

Implementations on Foreign Types

Implementors