Go to file
Anna 0e97b022a0 chore: bump version to 1.6.0 2021-12-06 15:52:43 -05:00
src feat: add reaper and sage 2021-10-06 22:29:37 -04:00
.gitignore chore: initial commit 2018-03-28 20:44:30 -04:00
Cargo.toml chore: bump version to 1.6.0 2021-12-06 15:52:43 -05:00
LICENSE chore: initial commit 2018-03-28 20:44:30 -04:00
README.md docs: update readme 2018-03-31 17:13:50 -04:00

README.md

ffxiv_types

These are useful types when working with FFXIV.

Up to date as of patch 4.25.

  • DataCenter (feature data_centers)
  • World (feature worlds)
  • Role (feature roles)
  • Job (feature combat_jobs)
  • NonCombatJob (feature non_combat_jobs)
  • Classification (feature job_classifications)

Job, NonCombatJob, and Classification can all be simultaneously enabled with feature jobs.

All types implement Debug, Display, Clone, Copy, and FromStr.

With feature with_serde, all types also implement Serialize and Deserialize.

They also all have a fn as_str(&self) -> &'static str.

With feature all_const, they all have an ALL const (e.g. Job::ALL).