[][src]Trait jqdata_model::models::JsonBodyConsumer

pub trait JsonBodyConsumer {
    type Output: for<'de> Deserialize<'de>;
    fn consume<R: Read>(body: R) -> Result<Self::Output> { ... }
}

consume body as json used by jqdata-derive crate

Associated Types

type Output: for<'de> Deserialize<'de>

Loading content...

Provided methods

fn consume<R: Read>(body: R) -> Result<Self::Output>

Loading content...

Implementors

impl JsonBodyConsumer for GetFundInfo[src]

Loading content...