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

pub struct EgressRequest {
    pub id: String,
    pub payload: Option<Payload>,
    pub endpoint: i32,
    pub project: String,
    pub trace_id: String,
    pub timeout: Option<Duration>,
}

gRPC request payload for tether.

Fields

id: String

Unique identifier for the request.

payload: Option<Payload>

Actual payload to send to agent.

endpoint: i32

Tether Endpoint.

project: String

GCP Project. Format: projects/{project_number}.

trace_id: String

Unique identifier for clients to trace their request/response.

timeout: Option<Duration>

Timeout for the HTTP request.

Implementations

impl EgressRequest[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 EgressRequest[src]

impl Debug for EgressRequest[src]

impl Default for EgressRequest[src]

impl Message for EgressRequest[src]

impl PartialEq<EgressRequest> for EgressRequest[src]

impl StructuralPartialEq for EgressRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for EgressRequest

impl Send for EgressRequest

impl Sync for EgressRequest

impl Unpin for EgressRequest

impl UnwindSafe for EgressRequest

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]