[][src]Struct tweep::StoryTitle

pub struct StoryTitle {
    pub title: String,
    pub position: Position,
}

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::{Parser, StoryTitle};
let input:Vec<&str> = "Example Story".split('\n').collect();
let out = StoryTitle::parse(&input);
assert_eq!(out.get_output().as_ref().ok().unwrap().title, "Example Story");

Fields

title: String

The title content

position: Position

The position of the content

Trait Implementations

impl Debug for StoryTitle[src]

impl From<StoryTitle> for PassageContent[src]

impl<'a> Parser<'a> for StoryTitle[src]

type Output = Output<Result<Self, ErrorList>>

The type produced by this parser

type Input = [&'a str]

The type accepted by this parser

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