ironworks 0.4.1

Modular FFXIV data toolkit written in rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use binrw::{binread, NullString};

/// SeString representation and utilities.
#[binread]
#[derive(Debug)]
pub struct SeString {
	inner: NullString,
}

impl ToString for SeString {
	fn to_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?