pub trait FromProtoError: From<ProtoError> + Error + Clone { }
Expand description

A trait marking a type which implements From and std::error::Error types as well as Clone + Send

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<E> FromProtoError for E
where E: From<ProtoError> + Error + Clone,