poem_openapi::types

Trait ParseFromYAML

Source
pub trait ParseFromYAML: Sized + Type {
    // Required method
    fn parse_from_yaml(value: Option<Value>) -> ParseResult<Self>;

    // Provided method
    fn parse_from_yaml_string(s: &str) -> ParseResult<Self> { ... }
}
Expand description

Represents a type that can parsing from YAML.

Required Methods§

Provided Methods§

Source

fn parse_from_yaml_string(s: &str) -> ParseResult<Self>

Parse from YAML string.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§