Struct tendermint_proto::Error
source · pub struct Error(pub ErrorDetail, pub DefaultTracer);Tuple Fields§
§0: ErrorDetail§1: DefaultTracerImplementations§
source§impl Error
impl Error
pub fn detail(&self) -> &ErrorDetail
pub fn into_detail(self) -> ErrorDetail
pub fn trace(&self) -> &DefaultTracer
pub fn into_trace(self) -> DefaultTracer
pub fn add_trace<E: Display>(self, message: &E) -> Selfwhere
DefaultTracer: ErrorMessageTracer,
pub fn trace_from<E, Cont>(source: E::Source, cont: Cont) -> Selfwhere
E: ErrorSource<DefaultTracer>,
DefaultTracer: ErrorMessageTracer,
Cont: FnOnce(E::Detail) -> ErrorDetail,
source§impl Error
impl Error
pub fn encode_message(
source: AsErrorSource<DisplayOnly<EncodeError>, DefaultTracer>
) -> Error
source§impl Error
impl Error
pub fn decode_message(
source: AsErrorSource<DisplayOnly<DecodeError>, DefaultTracer>
) -> Error
source§impl Error
impl Error
pub fn parse_length(
source: AsErrorSource<DisplayOnly<TryFromIntError>, DefaultTracer>
) -> Error
Trait Implementations§
source§impl ErrorSource<StringTracer> for Error
impl ErrorSource<StringTracer> for Error
source§fn error_details(Error: Self) -> (ErrorDetail, Option<DefaultTracer>)
fn error_details(Error: Self) -> (ErrorDetail, Option<DefaultTracer>)
Extracts the error details out from the error source, together with
an optional error trace. Read more