[][src]Struct tweep::StoryTitle

pub struct StoryTitle {
    pub title: String,
}

The content of a special passage with the StoryTitle name, which will be used as the title for a parsed story

Parse Errors

None

Parse Warnings

None

Examples

use tweep::{FullContext, StoryTitle};
let context = FullContext::from(None, "Example Story".to_string());
let out = StoryTitle::parse(context);
assert_eq!(out.get_output().as_ref().ok().unwrap().title, "Example Story");

Fields

title: String

The title content

Implementations

impl StoryTitle[src]

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

Parses a StoryTitle out of the given context

Trait Implementations

impl Debug for StoryTitle[src]

impl From<StoryTitle> for PassageContent[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> 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.