Trait IntoStoryQuery

Source
pub trait IntoStoryQuery {
    // Required method
    fn into_story_query(self, tagger: &StoryTagger) -> StoryQuery;
}
Expand description

A string that may be turned into a StoryQuery.

Required Methods§

Source

fn into_story_query(self, tagger: &StoryTagger) -> StoryQuery

Implementations on Foreign Types§

Source§

impl<S: StoryQueryString> IntoStoryQuery for &Option<S>

Source§

fn into_story_query(self, tagger: &StoryTagger) -> StoryQuery

Source§

impl<S: StoryQueryString> IntoStoryQuery for Option<S>

Source§

fn into_story_query(self, tagger: &StoryTagger) -> StoryQuery

Implementors§

Source§

impl<S: StoryQueryString> IntoStoryQuery for S