pub struct TestIdentityProviderResponse {
pub message: Option<String>,
pub response: Option<String>,
pub status_code: i64,
pub url: String,
}Fields§
§message: Option<String>A message that indicates whether the test was successful or not.
response: Option<String>The response that is returned from your API Gateway.
status_code: i64The HTTP status code that is the response from your API Gateway.
url: StringThe endpoint of the service used to authenticate a user.
Trait Implementations§
Source§impl Clone for TestIdentityProviderResponse
impl Clone for TestIdentityProviderResponse
Source§fn clone(&self) -> TestIdentityProviderResponse
fn clone(&self) -> TestIdentityProviderResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TestIdentityProviderResponse
impl Debug for TestIdentityProviderResponse
Source§impl Default for TestIdentityProviderResponse
impl Default for TestIdentityProviderResponse
Source§fn default() -> TestIdentityProviderResponse
fn default() -> TestIdentityProviderResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestIdentityProviderResponse
impl<'de> Deserialize<'de> for TestIdentityProviderResponse
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 PartialEq for TestIdentityProviderResponse
impl PartialEq for TestIdentityProviderResponse
Source§fn eq(&self, other: &TestIdentityProviderResponse) -> bool
fn eq(&self, other: &TestIdentityProviderResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TestIdentityProviderResponse
Auto Trait Implementations§
impl Freeze for TestIdentityProviderResponse
impl RefUnwindSafe for TestIdentityProviderResponse
impl Send for TestIdentityProviderResponse
impl Sync for TestIdentityProviderResponse
impl Unpin for TestIdentityProviderResponse
impl UnsafeUnpin for TestIdentityProviderResponse
impl UnwindSafe for TestIdentityProviderResponse
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