pub struct SSOSuccess {
pub url: String,
pub status: u16,
pub headers: Headers,
}
Fields§
§url: String
URL to open in a browser which will complete the sign-in flow by taking the user to the identity provider’s authentication flow.
On browsers you can set the URL to window.location.href
to take
the user to the authentication flow.
status: u16
§headers: Headers
Trait Implementations§
Source§impl Clone for SSOSuccess
impl Clone for SSOSuccess
Source§fn clone(&self) -> SSOSuccess
fn clone(&self) -> SSOSuccess
Returns a copy 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 SSOSuccess
impl Debug for SSOSuccess
Source§impl Default for SSOSuccess
impl Default for SSOSuccess
Source§fn default() -> SSOSuccess
fn default() -> SSOSuccess
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SSOSuccess
impl<'de> Deserialize<'de> for SSOSuccess
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 SSOSuccess
impl PartialEq for SSOSuccess
Source§impl Serialize for SSOSuccess
impl Serialize for SSOSuccess
impl StructuralPartialEq for SSOSuccess
Auto Trait Implementations§
impl Freeze for SSOSuccess
impl RefUnwindSafe for SSOSuccess
impl Send for SSOSuccess
impl Sync for SSOSuccess
impl Unpin for SSOSuccess
impl UnwindSafe for SSOSuccess
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