Home
last modified time | relevance | path

Searched refs:DecodeError (Results 1 – 13 of 13) sorted by relevance

/tonic/tonic-types/src/richer_error/std_messages/
H A Drequest_info.rs1 use prost::{DecodeError, Message};
56 fn from_any(any: Any) -> Result<Self, DecodeError> { in from_any() argument
62 fn from_any_ref(any: &Any) -> Result<Self, DecodeError> { in from_any_ref() argument
H A Dloc_message.rs1 use prost::{DecodeError, Message};
57 fn from_any(any: Any) -> Result<Self, DecodeError> { in from_any() argument
63 fn from_any_ref(any: &Any) -> Result<Self, DecodeError> { in from_any_ref() argument
H A Ddebug_info.rs1 use prost::{DecodeError, Message};
53 fn from_any(any: Any) -> Result<Self, DecodeError> { in from_any() argument
59 fn from_any_ref(any: &Any) -> Result<Self, DecodeError> { in from_any_ref() argument
H A Dresource_info.rs1 use prost::{DecodeError, Message};
69 fn from_any(any: Any) -> Result<Self, DecodeError> { in from_any() argument
75 fn from_any_ref(any: &Any) -> Result<Self, DecodeError> { in from_any_ref() argument
H A Derror_info.rs3 use prost::{DecodeError, Message};
69 fn from_any(any: Any) -> Result<Self, DecodeError> { in from_any() argument
75 fn from_any_ref(any: &Any) -> Result<Self, DecodeError> { in from_any_ref() argument
H A Dretry_info.rs3 use prost::{DecodeError, Message};
68 fn from_any(any: Any) -> Result<Self, DecodeError> { in from_any() argument
74 fn from_any_ref(any: &Any) -> Result<Self, DecodeError> { in from_any_ref() argument
H A Dhelp.rs1 use prost::{DecodeError, Message};
111 fn from_any(any: Any) -> Result<Self, DecodeError> { in from_any() argument
117 fn from_any_ref(any: &Any) -> Result<Self, DecodeError> { in from_any_ref() argument
H A Dbad_request.rs1 use prost::{DecodeError, Message};
115 fn from_any(any: Any) -> Result<Self, DecodeError> { in from_any() argument
121 fn from_any_ref(any: &Any) -> Result<Self, DecodeError> { in from_any_ref() argument
H A Dquota_failure.rs1 use prost::{DecodeError, Message};
112 fn from_any(any: Any) -> Result<Self, DecodeError> { in from_any() argument
118 fn from_any_ref(any: &Any) -> Result<Self, DecodeError> { in from_any_ref() argument
H A Dprec_failure.rs1 use prost::{DecodeError, Message};
135 fn from_any(any: Any) -> Result<Self, DecodeError> { in from_any() argument
141 fn from_any_ref(any: &Any) -> Result<Self, DecodeError> { in from_any_ref() argument
/tonic/tonic-reflection/src/server/
H A Dmod.rs5 use prost::{DecodeError, Message};
305 DecodeError(prost::DecodeError), enumerator
310 impl From<DecodeError> for Error {
311 fn from(e: DecodeError) -> Self { in from()
312 Error::DecodeError(e) in from()
321 Error::DecodeError(_) => f.write_str("error decoding FileDescriptorSet from buffer"), in fmt()
/tonic/tonic-types/src/richer_error/
H A Dmod.rs3 DecodeError, Message,
26 fn from_any(any: Any) -> Result<Self, DecodeError> in from_any()
32 fn from_any_ref(any: &Any) -> Result<Self, DecodeError> in from_any_ref()
175 fn check_error_details(&self) -> Result<ErrorDetails, DecodeError>; in check_error_details() argument
229 fn check_error_details_vec(&self) -> Result<Vec<ErrorDetail>, DecodeError>; in check_error_details_vec() argument
606 fn check_error_details(&self) -> Result<ErrorDetails, DecodeError> { in check_error_details() argument
616 fn check_error_details_vec(&self) -> Result<Vec<ErrorDetail>, DecodeError> { in check_error_details_vec() argument
699 fn check_error_details(&self) -> Result<ErrorDetails, DecodeError>; in check_error_details() argument
712 fn check_error_details_vec(&self) -> Result<Vec<ErrorDetail>, DecodeError>; in check_error_details_vec() argument
760 fn check_error_details(&self) -> Result<ErrorDetails, DecodeError> { in check_error_details() argument
[all …]
/tonic/tonic/src/codec/
H A Dprost.rs144 fn from_decode_error(error: prost::DecodeError) -> crate::Status { in from_decode_error()