Trait poem_openapi::types::ParseFromJSON[][src]

pub trait ParseFromJSON: Type {
    fn parse_from_json(value: Value) -> ParseResult<Self>
    where
        Self: Sized
; }
Expand description

Represents a type that can parsing from JSON.

Required methods

Parse from serde_json::Value.

Implementations on Foreign Types

Implementors