kafka::error::Result [] [src]

type Result<T> = Result<T, Error>;

A type for results generated by this crate's functions where the Err type is hard-wired to enums::Error.

This typedef is generally used to avoid writing out enums::Error directly and is otherwise a direct mapping to std::result::Result.