pub struct TestFailure {
pub actual_output_url: Option<String>,
pub actual_redirect_response_code: Option<i32>,
pub actual_service: Option<String>,
pub expected_output_url: Option<String>,
pub expected_redirect_response_code: Option<i32>,
pub expected_service: Option<String>,
pub headers: Option<Vec<UrlMapTestHeader>>,
pub host: Option<String>,
pub path: Option<String>,
}
Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§actual_output_url: Option<String>
The actual output URL evaluated by a load balancer containing the scheme, host, path and query parameters.
actual_redirect_response_code: Option<i32>
Actual HTTP status code for rule with urlRedirect
calculated by load balancer
actual_service: Option<String>
BackendService or BackendBucket returned by load balancer.
expected_output_url: Option<String>
The expected output URL evaluated by a load balancer containing the scheme, host, path and query parameters.
expected_redirect_response_code: Option<i32>
Expected HTTP status code for rule with urlRedirect
calculated by load balancer
expected_service: Option<String>
Expected BackendService or BackendBucket resource the given URL should be mapped to.
headers: Option<Vec<UrlMapTestHeader>>
HTTP headers of the request.
host: Option<String>
Host portion of the URL.
path: Option<String>
Path portion including query parameters in the URL.
Trait Implementations§
Source§impl Clone for TestFailure
impl Clone for TestFailure
Source§fn clone(&self) -> TestFailure
fn clone(&self) -> TestFailure
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 TestFailure
impl Debug for TestFailure
Source§impl Default for TestFailure
impl Default for TestFailure
Source§fn default() -> TestFailure
fn default() -> TestFailure
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestFailure
impl<'de> Deserialize<'de> for TestFailure
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for TestFailure
impl Serialize for TestFailure
impl Part for TestFailure
Auto Trait Implementations§
impl Freeze for TestFailure
impl RefUnwindSafe for TestFailure
impl Send for TestFailure
impl Sync for TestFailure
impl Unpin for TestFailure
impl UnwindSafe for TestFailure
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more