Struct gapi_grpc::google::devtools::clouderrorreporting::v1beta1::HttpRequestContext[][src]

pub struct HttpRequestContext {
    pub method: String,
    pub url: String,
    pub user_agent: String,
    pub referrer: String,
    pub response_status_code: i32,
    pub remote_ip: String,
}

HTTP request data that is related to a reported error. This data should be provided by the application when reporting an error, unless the error report has been generated automatically from Google App Engine logs.

Fields

method: String

The type of HTTP request, such as GET, POST, etc.

url: String

The URL of the request.

user_agent: String

The user agent information that is provided with the request.

referrer: String

The referrer information that is provided with the request.

response_status_code: i32

The HTTP response status code for the request.

remote_ip: String

The IP address from which the request originated. This can be IPv4, IPv6, or a token which is derived from the IP address, depending on the data that has been provided in the error report.

Trait Implementations

impl Clone for HttpRequestContext[src]

impl Debug for HttpRequestContext[src]

impl Default for HttpRequestContext[src]

impl Message for HttpRequestContext[src]

impl PartialEq<HttpRequestContext> for HttpRequestContext[src]

impl StructuralPartialEq for HttpRequestContext[src]

Auto Trait Implementations

impl RefUnwindSafe for HttpRequestContext

impl Send for HttpRequestContext

impl Sync for HttpRequestContext

impl Unpin for HttpRequestContext

impl UnwindSafe for HttpRequestContext

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]