pub struct RequestInfo {
pub request_id: String,
pub serving_data: String,
}Expand description
Used to encode/decode the RequestInfo standard error message described
in error_details.proto. Contains metadata about the request that
clients can attach when providing feedback.
Fields§
§request_id: StringAn opaque string that should only be interpreted by the service that generated it. For example, an id used to identify requests in the logs.
serving_data: StringAny data used to serve this request. For example, an encrypted stack trace that can be sent back to the service provider for debugging.
Implementations§
Source§impl RequestInfo
impl RequestInfo
Sourcepub const TYPE_URL: &'static str = "type.googleapis.com/google.rpc.RequestInfo"
pub const TYPE_URL: &'static str = "type.googleapis.com/google.rpc.RequestInfo"
Type URL of the RequestInfo standard error message type.
Sourcepub fn new(
request_id: impl Into<String>,
serving_data: impl Into<String>,
) -> Self
pub fn new( request_id: impl Into<String>, serving_data: impl Into<String>, ) -> Self
Creates a new RequestInfo struct.
Sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns true if RequestInfo fields are empty, and false if they
are not.
Trait Implementations§
Source§impl Clone for RequestInfo
impl Clone for RequestInfo
Source§fn clone(&self) -> RequestInfo
fn clone(&self) -> RequestInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RequestInfo
impl Debug for RequestInfo
Source§impl From<RequestInfo> for ErrorDetail
impl From<RequestInfo> for ErrorDetail
Source§fn from(err_detail: RequestInfo) -> Self
fn from(err_detail: RequestInfo) -> Self
Converts to this type from the input type.
Source§impl From<RequestInfo> for RequestInfo
impl From<RequestInfo> for RequestInfo
Source§fn from(req_info: RequestInfo) -> Self
fn from(req_info: RequestInfo) -> Self
Converts to this type from the input type.
Source§impl From<RequestInfo> for RequestInfo
impl From<RequestInfo> for RequestInfo
Source§fn from(req_info: RequestInfo) -> Self
fn from(req_info: RequestInfo) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RequestInfo
impl RefUnwindSafe for RequestInfo
impl Send for RequestInfo
impl Sync for RequestInfo
impl Unpin for RequestInfo
impl UnwindSafe for RequestInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request