pub struct LoginFlowTestContext {
pub debug_payload: Option<Box<LoginFlowTestDebugPayload>>,
pub provider_id: String,
}Expand description
LoginFlowTestContext : Admin-test extension of a login flow. Populated only for flows created by the admin test endpoint; included in the flow’s API response so the admin UI can render the pre-scoped provider and (once captured) the debug round-trip result.
Fields§
§debug_payload: Option<Box<LoginFlowTestDebugPayload>>§provider_id: StringThe ID of the OIDC provider this test flow targets.
Implementations§
Source§impl LoginFlowTestContext
impl LoginFlowTestContext
Sourcepub fn new(provider_id: String) -> LoginFlowTestContext
pub fn new(provider_id: String) -> LoginFlowTestContext
Admin-test extension of a login flow. Populated only for flows created by the admin test endpoint; included in the flow’s API response so the admin UI can render the pre-scoped provider and (once captured) the debug round-trip result.
Trait Implementations§
Source§impl Clone for LoginFlowTestContext
impl Clone for LoginFlowTestContext
Source§fn clone(&self) -> LoginFlowTestContext
fn clone(&self) -> LoginFlowTestContext
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 LoginFlowTestContext
impl Debug for LoginFlowTestContext
Source§impl Default for LoginFlowTestContext
impl Default for LoginFlowTestContext
Source§fn default() -> LoginFlowTestContext
fn default() -> LoginFlowTestContext
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LoginFlowTestContext
impl<'de> Deserialize<'de> for LoginFlowTestContext
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 LoginFlowTestContext
impl PartialEq for LoginFlowTestContext
Source§fn eq(&self, other: &LoginFlowTestContext) -> bool
fn eq(&self, other: &LoginFlowTestContext) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LoginFlowTestContext
impl Serialize for LoginFlowTestContext
impl StructuralPartialEq for LoginFlowTestContext
Auto Trait Implementations§
impl Freeze for LoginFlowTestContext
impl RefUnwindSafe for LoginFlowTestContext
impl Send for LoginFlowTestContext
impl Sync for LoginFlowTestContext
impl Unpin for LoginFlowTestContext
impl UnsafeUnpin for LoginFlowTestContext
impl UnwindSafe for LoginFlowTestContext
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