Struct gapi_grpc::google::cloud::apigeeconnect::v1::EgressResponse[][src]

pub struct EgressResponse {
    pub id: String,
    pub http_response: Option<HttpResponse>,
    pub status: Option<Status>,
    pub project: String,
    pub trace_id: String,
    pub endpoint: i32,
    pub name: String,
}

gRPC response payload for tether.

Fields

id: String

Unique identifier for the response. Matches the EgressRequest’s id.

http_response: Option<HttpResponse>

HttpResponse.

status: Option<Status>

Errors from application when handling the http request.

project: String

GCP Project. Format: projects/{project_number}.

trace_id: String

Unique identifier for clients to trace their request/response. Matches the EgressRequest’s trace id

endpoint: i32

Tether Endpoint.

name: String

Name is the full resource path of endpoint. Format: projects/{project_number or project_id}/endpoints/{endpoint}

Implementations

impl EgressResponse[src]

pub fn endpoint(&self) -> TetherEndpoint[src]

Returns the enum value of endpoint, or the default if the field is set to an invalid enum value.

pub fn set_endpoint(&mut self, value: TetherEndpoint)[src]

Sets endpoint to the provided enum value.

Trait Implementations

impl Clone for EgressResponse[src]

impl Debug for EgressResponse[src]

impl Default for EgressResponse[src]

impl Message for EgressResponse[src]

impl PartialEq<EgressResponse> for EgressResponse[src]

impl StructuralPartialEq for EgressResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for EgressResponse

impl Send for EgressResponse

impl Sync for EgressResponse

impl Unpin for EgressResponse

impl UnwindSafe for EgressResponse

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]