pub struct UpdateSettingsFlowWithSamlMethod {
pub csrf_token: Option<String>,
pub flow: Option<String>,
pub link: Option<String>,
pub method: String,
pub traits: Option<Value>,
pub transient_payload: Option<Value>,
pub unlink: Option<String>,
}Expand description
UpdateSettingsFlowWithSamlMethod : Update settings flow using SAML
Fields§
§csrf_token: Option<String>The CSRF Token
flow: Option<String>Flow ID is the flow’s ID. in: query
link: Option<String>Link this provider Either this or unlink must be set. type: string in: body
method: StringMethod Should be set to saml when trying to update a profile.
traits: Option<Value>The identity’s traits in: body
transient_payload: Option<Value>Transient data to pass along to any webhooks
unlink: Option<String>Unlink this provider Either this or link must be set. type: string in: body
Implementations§
Source§impl UpdateSettingsFlowWithSamlMethod
impl UpdateSettingsFlowWithSamlMethod
Sourcepub fn new(method: String) -> UpdateSettingsFlowWithSamlMethod
pub fn new(method: String) -> UpdateSettingsFlowWithSamlMethod
Update settings flow using SAML
Trait Implementations§
Source§impl Clone for UpdateSettingsFlowWithSamlMethod
impl Clone for UpdateSettingsFlowWithSamlMethod
Source§fn clone(&self) -> UpdateSettingsFlowWithSamlMethod
fn clone(&self) -> UpdateSettingsFlowWithSamlMethod
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 Default for UpdateSettingsFlowWithSamlMethod
impl Default for UpdateSettingsFlowWithSamlMethod
Source§fn default() -> UpdateSettingsFlowWithSamlMethod
fn default() -> UpdateSettingsFlowWithSamlMethod
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateSettingsFlowWithSamlMethod
impl<'de> Deserialize<'de> for UpdateSettingsFlowWithSamlMethod
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 UpdateSettingsFlowWithSamlMethod
impl PartialEq for UpdateSettingsFlowWithSamlMethod
Source§fn eq(&self, other: &UpdateSettingsFlowWithSamlMethod) -> bool
fn eq(&self, other: &UpdateSettingsFlowWithSamlMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateSettingsFlowWithSamlMethod
Auto Trait Implementations§
impl Freeze for UpdateSettingsFlowWithSamlMethod
impl RefUnwindSafe for UpdateSettingsFlowWithSamlMethod
impl Send for UpdateSettingsFlowWithSamlMethod
impl Sync for UpdateSettingsFlowWithSamlMethod
impl Unpin for UpdateSettingsFlowWithSamlMethod
impl UnwindSafe for UpdateSettingsFlowWithSamlMethod
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