Trait ConsulType

Source
pub trait ConsulType {
    type Reply;

    // Required method
    fn parse(buf: &Chunk) -> Result<Self::Reply, ParseError>;
}
Expand description

Trait for parsing types out of consul

Required Associated Types§

Source

type Reply

The kind of replies this parser yields

Required Methods§

Source

fn parse(buf: &Chunk) -> Result<Self::Reply, ParseError>

Parse an http body and give back a result

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§