synwire 0.1.0

Convenience re-exports and reference implementations for Synwire
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Additional output parser implementations.

mod combining;
mod enum_parser;
mod list;
mod regex_parser;
mod retry;
mod xml;

pub use combining::CombiningOutputParser;
pub use enum_parser::EnumOutputParser;
pub use list::CommaSeparatedListOutputParser;
pub use regex_parser::RegexParser;
pub use retry::RetryOutputParser;
pub use xml::XmlOutputParser;