Expand description
Datatypes for storing Fountain documents.
If you’d like these types to derive Serialize and Deserialize using serde, please set your
dependency on fountain to use the use_serde feature:
fountain = { version = <target version>, features = ["use_serde"] }
Structs§
- Document
- A Document is the entire screenplay, both title page and its actual contents (stored as Lines). This will impl Serialize and Deserialize if the feature “use_serde” is specified.
- Title
Page - Defines a document’s title page. This will impl Serialize and Deserialize if the feature “use_serde” is specified.
Enums§
- Line
- A Line represents a line of a screenplay, as defined in the Fountain spec This will impl Serialize and Deserialize if the feature “use_serde” is specified.