pub struct ContinueWithSettingsUiFlow {
pub id: String,
pub url: Option<String>,
}Fields§
§id: StringThe ID of the settings flow
url: Option<String>The URL of the settings flow If this value is set, redirect the user’s browser to this URL. This value is typically unset for native clients / API flows.
Implementations§
Source§impl ContinueWithSettingsUiFlow
impl ContinueWithSettingsUiFlow
pub fn new(id: String) -> ContinueWithSettingsUiFlow
Trait Implementations§
Source§impl Clone for ContinueWithSettingsUiFlow
impl Clone for ContinueWithSettingsUiFlow
Source§fn clone(&self) -> ContinueWithSettingsUiFlow
fn clone(&self) -> ContinueWithSettingsUiFlow
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 ContinueWithSettingsUiFlow
impl Debug for ContinueWithSettingsUiFlow
Source§impl Default for ContinueWithSettingsUiFlow
impl Default for ContinueWithSettingsUiFlow
Source§fn default() -> ContinueWithSettingsUiFlow
fn default() -> ContinueWithSettingsUiFlow
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContinueWithSettingsUiFlow
impl<'de> Deserialize<'de> for ContinueWithSettingsUiFlow
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
impl StructuralPartialEq for ContinueWithSettingsUiFlow
Auto Trait Implementations§
impl Freeze for ContinueWithSettingsUiFlow
impl RefUnwindSafe for ContinueWithSettingsUiFlow
impl Send for ContinueWithSettingsUiFlow
impl Sync for ContinueWithSettingsUiFlow
impl Unpin for ContinueWithSettingsUiFlow
impl UnsafeUnpin for ContinueWithSettingsUiFlow
impl UnwindSafe for ContinueWithSettingsUiFlow
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