pub struct Samlv2AssertionDecryptionConfiguration {
pub key_transport_decryption_key_id: Option<Uuid>,
pub enabled: Option<bool>,
}
Expand description
Samlv2AssertionDecryptionConfiguration : Configuration for encrypted assertions when acting as SAML Service Provider
Fields§
§key_transport_decryption_key_id: Option<Uuid>
§enabled: Option<bool>
Implementations§
Source§impl Samlv2AssertionDecryptionConfiguration
impl Samlv2AssertionDecryptionConfiguration
Sourcepub fn new() -> Samlv2AssertionDecryptionConfiguration
pub fn new() -> Samlv2AssertionDecryptionConfiguration
Configuration for encrypted assertions when acting as SAML Service Provider
Trait Implementations§
Source§impl Clone for Samlv2AssertionDecryptionConfiguration
impl Clone for Samlv2AssertionDecryptionConfiguration
Source§fn clone(&self) -> Samlv2AssertionDecryptionConfiguration
fn clone(&self) -> Samlv2AssertionDecryptionConfiguration
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 Samlv2AssertionDecryptionConfiguration
impl Default for Samlv2AssertionDecryptionConfiguration
Source§fn default() -> Samlv2AssertionDecryptionConfiguration
fn default() -> Samlv2AssertionDecryptionConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Samlv2AssertionDecryptionConfiguration
impl<'de> Deserialize<'de> for Samlv2AssertionDecryptionConfiguration
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 Samlv2AssertionDecryptionConfiguration
impl PartialEq for Samlv2AssertionDecryptionConfiguration
Source§fn eq(&self, other: &Samlv2AssertionDecryptionConfiguration) -> bool
fn eq(&self, other: &Samlv2AssertionDecryptionConfiguration) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for Samlv2AssertionDecryptionConfiguration
Auto Trait Implementations§
impl Freeze for Samlv2AssertionDecryptionConfiguration
impl RefUnwindSafe for Samlv2AssertionDecryptionConfiguration
impl Send for Samlv2AssertionDecryptionConfiguration
impl Sync for Samlv2AssertionDecryptionConfiguration
impl Unpin for Samlv2AssertionDecryptionConfiguration
impl UnwindSafe for Samlv2AssertionDecryptionConfiguration
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