pub enum FlowStepViewContent {
Form {
presentation: FlowPresentationView,
form: FlowFormView,
},
ExternalAuth {
presentation: FlowPresentationView,
authorization_url: String,
completion_mode: ExternalAuthCompletionModeView,
poll_after_ms: Option<u64>,
},
}Variants§
Form
ExternalAuth
Trait Implementations§
Source§impl Clone for FlowStepViewContent
impl Clone for FlowStepViewContent
Source§fn clone(&self) -> FlowStepViewContent
fn clone(&self) -> FlowStepViewContent
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 FlowStepViewContent
impl Debug for FlowStepViewContent
Source§impl<'de> Deserialize<'de> for FlowStepViewContent
impl<'de> Deserialize<'de> for FlowStepViewContent
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 FlowStepViewContent
impl PartialEq for FlowStepViewContent
Source§impl Serialize for FlowStepViewContent
impl Serialize for FlowStepViewContent
impl StructuralPartialEq for FlowStepViewContent
Auto Trait Implementations§
impl Freeze for FlowStepViewContent
impl RefUnwindSafe for FlowStepViewContent
impl Send for FlowStepViewContent
impl Sync for FlowStepViewContent
impl Unpin for FlowStepViewContent
impl UnsafeUnpin for FlowStepViewContent
impl UnwindSafe for FlowStepViewContent
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