usebinrw::{binread, NullString};/// SeString representation and utilities.
#[binread]#[derive(Debug)]pubstructSeString{inner: NullString,
}implToString forSeString{fnto_string(&self)-> String{self.inner.clone().into_string()}}// TODO: all the rest of the sestring handling. maybe under a ffxiv lock for some payloads? and a sestring one for general non-payload logic?