pub enum FlowStepContent {
Form {
presentation: FlowPresentation,
form: FlowForm,
render_refs: Vec<FlowValueRef>,
},
ExternalAuth {
presentation: FlowPresentation,
authorization_url_ref: FlowValueRef,
completion_mode: ExternalAuthCompletionMode,
poll_after_ms: Option<u64>,
},
}Variants§
Trait Implementations§
Source§impl Clone for FlowStepContent
impl Clone for FlowStepContent
Source§fn clone(&self) -> FlowStepContent
fn clone(&self) -> FlowStepContent
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 FlowStepContent
impl Debug for FlowStepContent
Source§impl<'de> Deserialize<'de> for FlowStepContent
impl<'de> Deserialize<'de> for FlowStepContent
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 FlowStepContent
impl PartialEq for FlowStepContent
Source§impl Serialize for FlowStepContent
impl Serialize for FlowStepContent
impl StructuralPartialEq for FlowStepContent
Auto Trait Implementations§
impl Freeze for FlowStepContent
impl RefUnwindSafe for FlowStepContent
impl Send for FlowStepContent
impl Sync for FlowStepContent
impl Unpin for FlowStepContent
impl UnsafeUnpin for FlowStepContent
impl UnwindSafe for FlowStepContent
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