[][src]Struct tweep::StoryData

pub struct StoryData {
    pub ifid: String,
    pub format: Option<String>,
    pub format_version: Option<String>,
    pub start: Option<String>,
    pub tag_colors: Option<HashMap<String, String>>,
    pub zoom: Option<f32>,
}

The content of a special passage with the name StoryData that contains a JSON blob with various information about the story.

JSON fields

Fields as defined by the Twee 3 specification:

  • ifid - Rquired. String. Interactive Fiction IDentifier v4 UUID
  • format - String. Maps to .
  • format-version - String. Maps to .
  • start - String. Maps to of the node whose pid matches .
  • tag-colors - Object of tag(string):color(string) pairs. Pairs map to nodes as :.
  • zoom - Decimal. Maps to .

Parse Errors

None

Parse Warnings

  • [JsonError] - Error encountered while parsing the JSON content

Fields

ifid: String

Interactive Fiction IDentifier v4 UUID

format: Option<String>

The story format

format_version: Option<String>

The version of the story format

start: Option<String>

The starting passage

tag_colors: Option<HashMap<String, String>>

Map of tag name to color name for coloring tags

zoom: Option<f32>

Zoom level for editing in Twine

Implementations

impl StoryData[src]

pub fn parse(context: FullContext) -> Output<Result<Option<Self>, ErrorList>>[src]

Parses a StoryData out of the given context

Trait Implementations

impl Debug for StoryData[src]

impl<'de> Deserialize<'de> for StoryData[src]

impl From<StoryData> for PassageContent[src]

impl Serialize for StoryData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.