pub struct Saml {
pub status: Status,
pub strategy: Strategy,
pub external_verification_redirect_url: Option<String>,
pub error: Option<Option<Box<SamlError>>>,
pub expire_at: i64,
pub attempts: Option<Option<i64>>,
}Fields§
§status: Status§strategy: Strategy§external_verification_redirect_url: Option<String>§error: Option<Option<Box<SamlError>>>§expire_at: i64§attempts: Option<Option<i64>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Saml
impl<'de> Deserialize<'de> for Saml
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 Saml
Auto Trait Implementations§
impl Freeze for Saml
impl RefUnwindSafe for Saml
impl Send for Saml
impl Sync for Saml
impl Unpin for Saml
impl UnwindSafe for Saml
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