Home
last modified time | relevance | path

Searched refs:DebugInfo (Results 1 – 9 of 9) sorted by relevance

/tonic/tonic-types/src/richer_error/std_messages/
H A Ddebug_info.rs13 pub struct DebugInfo { struct
21 impl DebugInfo { argument
27 DebugInfo { in new()
40 impl IntoAny for DebugInfo { implementation
51 impl FromAny for DebugInfo { implementation
58 impl FromAnyRef for DebugInfo { implementation
67 impl From<pb::DebugInfo> for DebugInfo { implementation
69 DebugInfo { in from()
76 impl From<DebugInfo> for pb::DebugInfo { implementation
78 pb::DebugInfo { in from()
[all …]
H A Dmod.rs7 pub use debug_info::DebugInfo;
/tonic/tonic-types/src/richer_error/error_details/
H A Dvec.rs2 BadRequest, DebugInfo, ErrorInfo, Help, LocalizedMessage, PreconditionFailure, QuotaFailure,
15 DebugInfo(DebugInfo), enumerator
48 impl From<DebugInfo> for ErrorDetail {
49 fn from(err_detail: DebugInfo) -> Self { in from()
50 ErrorDetail::DebugInfo(err_detail) in from()
H A Dmod.rs4 BadRequest, DebugInfo, ErrorInfo, FieldViolation, Help, HelpLink, LocalizedMessage,
22 pub(crate) debug_info: Option<DebugInfo>,
98 debug_info: Some(DebugInfo::new(stack_entries, detail)), in with_debug_info()
390 pub fn debug_info(&self) -> Option<&DebugInfo> { in debug_info() argument
471 self.debug_info = Some(DebugInfo::new(stack_entries, detail)); in set_debug_info()
/tonic/tonic-types/src/richer_error/
H A Dmod.rs302 fn get_details_debug_info(&self) -> Option<DebugInfo>; in get_details_debug_info() argument
558 ErrorDetail::DebugInfo(debug_info) => { in with_error_details_vec_and_metadata()
632 fn get_details_debug_info(&self) -> Option<DebugInfo> { in get_details_debug_info() argument
724 fn get_details_debug_info(&self) -> Option<DebugInfo>; in get_details_debug_info() argument
768 DebugInfo::TYPE_URL => { in check_error_details()
814 DebugInfo::TYPE_URL => { in check_error_details_vec()
815 details.push(DebugInfo::from_any_ref(any)?.into()); in check_error_details_vec()
864 fn get_details_debug_info(&self) -> Option<DebugInfo> { in get_details_debug_info() argument
866 if any.type_url.as_str() == DebugInfo::TYPE_URL { in get_details_debug_info()
867 if let Ok(detail) = DebugInfo::from_any_ref(any) { in get_details_debug_info()
[all …]
/tonic/tonic-types/src/
H A Dlib.rs180 BadRequest, DebugInfo, ErrorDetail, ErrorDetails, ErrorInfo, FieldViolation, Help, HelpLink,
/tonic/tonic-types/src/generated/
H A Dgoogle_rpc.rs45 pub struct DebugInfo { struct
/tonic/tonic-types/proto/
H A Derror_details.proto46 message DebugInfo { message
/tonic/
H A DCHANGELOG.md174 * **types:** add support for `DebugInfo` error message type ([#1179](https://github.com/hyperium/to…