pub struct RouteAction {Show 27 fields
pub cluster_not_found_response_code: i32,
pub metadata_match: Option<Metadata>,
pub prefix_rewrite: String,
pub regex_rewrite: Option<RegexMatchAndSubstitute>,
pub path_rewrite_policy: Option<TypedExtensionConfig>,
pub append_x_forwarded_host: bool,
pub timeout: Option<Duration>,
pub idle_timeout: Option<Duration>,
pub early_data_policy: Option<TypedExtensionConfig>,
pub retry_policy: Option<RetryPolicy>,
pub retry_policy_typed_config: Option<Any>,
pub request_mirror_policies: Vec<RequestMirrorPolicy>,
pub priority: i32,
pub rate_limits: Vec<RateLimit>,
pub include_vh_rate_limits: Option<BoolValue>,
pub hash_policy: Vec<HashPolicy>,
pub cors: Option<CorsPolicy>,
pub max_grpc_timeout: Option<Duration>,
pub grpc_timeout_offset: Option<Duration>,
pub upgrade_configs: Vec<UpgradeConfig>,
pub internal_redirect_policy: Option<InternalRedirectPolicy>,
pub internal_redirect_action: i32,
pub max_internal_redirects: Option<UInt32Value>,
pub hedge_policy: Option<HedgePolicy>,
pub max_stream_duration: Option<MaxStreamDuration>,
pub cluster_specifier: Option<ClusterSpecifier>,
pub host_rewrite_specifier: Option<HostRewriteSpecifier>,
}
Fields§
§cluster_not_found_response_code: i32
§metadata_match: Option<Metadata>
§prefix_rewrite: String
§regex_rewrite: Option<RegexMatchAndSubstitute>
§path_rewrite_policy: Option<TypedExtensionConfig>
§append_x_forwarded_host: bool
§timeout: Option<Duration>
§idle_timeout: Option<Duration>
§early_data_policy: Option<TypedExtensionConfig>
§retry_policy: Option<RetryPolicy>
§retry_policy_typed_config: Option<Any>
§request_mirror_policies: Vec<RequestMirrorPolicy>
§priority: i32
§rate_limits: Vec<RateLimit>
§include_vh_rate_limits: Option<BoolValue>
👎Deprecated
§hash_policy: Vec<HashPolicy>
§cors: Option<CorsPolicy>
👎Deprecated
§max_grpc_timeout: Option<Duration>
👎Deprecated
§grpc_timeout_offset: Option<Duration>
👎Deprecated
§upgrade_configs: Vec<UpgradeConfig>
§internal_redirect_policy: Option<InternalRedirectPolicy>
§internal_redirect_action: i32
👎Deprecated
§max_internal_redirects: Option<UInt32Value>
👎Deprecated
§hedge_policy: Option<HedgePolicy>
§max_stream_duration: Option<MaxStreamDuration>
§cluster_specifier: Option<ClusterSpecifier>
§host_rewrite_specifier: Option<HostRewriteSpecifier>
Implementations§
Source§impl RouteAction
impl RouteAction
Sourcepub fn priority(&self) -> RoutingPriority
pub fn priority(&self) -> RoutingPriority
Returns the enum value of priority
, or the default if the field is set to an invalid enum value.
Sourcepub fn set_priority(&mut self, value: RoutingPriority)
pub fn set_priority(&mut self, value: RoutingPriority)
Sets priority
to the provided enum value.
Sourcepub fn cluster_not_found_response_code(&self) -> ClusterNotFoundResponseCode
pub fn cluster_not_found_response_code(&self) -> ClusterNotFoundResponseCode
Returns the enum value of cluster_not_found_response_code
, or the default if the field is set to an invalid enum value.
Sourcepub fn set_cluster_not_found_response_code(
&mut self,
value: ClusterNotFoundResponseCode,
)
pub fn set_cluster_not_found_response_code( &mut self, value: ClusterNotFoundResponseCode, )
Sets cluster_not_found_response_code
to the provided enum value.
Sourcepub fn internal_redirect_action(&self) -> InternalRedirectAction
pub fn internal_redirect_action(&self) -> InternalRedirectAction
Returns the enum value of internal_redirect_action
, or the default if the field is set to an invalid enum value.
Sourcepub fn set_internal_redirect_action(&mut self, value: InternalRedirectAction)
pub fn set_internal_redirect_action(&mut self, value: InternalRedirectAction)
Sets internal_redirect_action
to the provided enum value.
Trait Implementations§
Source§impl Clone for RouteAction
impl Clone for RouteAction
Source§fn clone(&self) -> RouteAction
fn clone(&self) -> RouteAction
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 RouteAction
impl Debug for RouteAction
Source§impl Default for RouteAction
impl Default for RouteAction
Source§impl Message for RouteAction
impl Message for RouteAction
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode<B>(buf: B) -> Result<Self, DecodeError>
fn decode<B>(buf: B) -> Result<Self, DecodeError>
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes an instance of the message from a buffer, and merges it into
self
. Read moreSource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
.Source§impl PartialEq for RouteAction
impl PartialEq for RouteAction
impl StructuralPartialEq for RouteAction
Auto Trait Implementations§
impl Freeze for RouteAction
impl RefUnwindSafe for RouteAction
impl Send for RouteAction
impl Sync for RouteAction
impl Unpin for RouteAction
impl UnwindSafe for RouteAction
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