pub struct Samlv2Logout {
pub behavior: Option<SamlLogoutBehavior>,
pub default_verification_key_id: Option<Uuid>,
pub key_id: Option<Uuid>,
pub require_signed_requests: Option<bool>,
pub single_logout: Option<Box<Samlv2SingleLogout>>,
pub xml_signature_c14n_method: Option<CanonicalizationMethod>,
}
Fields§
§behavior: Option<SamlLogoutBehavior>
§default_verification_key_id: Option<Uuid>
§key_id: Option<Uuid>
§require_signed_requests: Option<bool>
§single_logout: Option<Box<Samlv2SingleLogout>>
§xml_signature_c14n_method: Option<CanonicalizationMethod>
Implementations§
Source§impl Samlv2Logout
impl Samlv2Logout
pub fn new() -> Samlv2Logout
Trait Implementations§
Source§impl Clone for Samlv2Logout
impl Clone for Samlv2Logout
Source§fn clone(&self) -> Samlv2Logout
fn clone(&self) -> Samlv2Logout
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Samlv2Logout
impl Debug for Samlv2Logout
Source§impl Default for Samlv2Logout
impl Default for Samlv2Logout
Source§fn default() -> Samlv2Logout
fn default() -> Samlv2Logout
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Samlv2Logout
impl<'de> Deserialize<'de> for Samlv2Logout
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 Samlv2Logout
impl PartialEq for Samlv2Logout
Source§impl Serialize for Samlv2Logout
impl Serialize for Samlv2Logout
impl StructuralPartialEq for Samlv2Logout
Auto Trait Implementations§
impl Freeze for Samlv2Logout
impl RefUnwindSafe for Samlv2Logout
impl Send for Samlv2Logout
impl Sync for Samlv2Logout
impl Unpin for Samlv2Logout
impl UnwindSafe for Samlv2Logout
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