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§
Required Methods§
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.