pub struct Samlv2AssertionEncryptionConfiguration {
pub digest_algorithm: Option<String>,
pub encryption_algorithm: Option<String>,
pub key_location: Option<String>,
pub key_transport_algorithm: Option<String>,
pub key_transport_encryption_key_id: Option<Uuid>,
pub mask_generation_function: Option<String>,
pub enabled: Option<bool>,
}
Fields§
§digest_algorithm: Option<String>
§encryption_algorithm: Option<String>
§key_location: Option<String>
§key_transport_algorithm: Option<String>
§key_transport_encryption_key_id: Option<Uuid>
§mask_generation_function: Option<String>
§enabled: Option<bool>
Implementations§
Trait Implementations§
Source§impl Clone for Samlv2AssertionEncryptionConfiguration
impl Clone for Samlv2AssertionEncryptionConfiguration
Source§fn clone(&self) -> Samlv2AssertionEncryptionConfiguration
fn clone(&self) -> Samlv2AssertionEncryptionConfiguration
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 Default for Samlv2AssertionEncryptionConfiguration
impl Default for Samlv2AssertionEncryptionConfiguration
Source§fn default() -> Samlv2AssertionEncryptionConfiguration
fn default() -> Samlv2AssertionEncryptionConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Samlv2AssertionEncryptionConfiguration
impl<'de> Deserialize<'de> for Samlv2AssertionEncryptionConfiguration
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 Samlv2AssertionEncryptionConfiguration
impl PartialEq for Samlv2AssertionEncryptionConfiguration
Source§fn eq(&self, other: &Samlv2AssertionEncryptionConfiguration) -> bool
fn eq(&self, other: &Samlv2AssertionEncryptionConfiguration) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for Samlv2AssertionEncryptionConfiguration
Auto Trait Implementations§
impl Freeze for Samlv2AssertionEncryptionConfiguration
impl RefUnwindSafe for Samlv2AssertionEncryptionConfiguration
impl Send for Samlv2AssertionEncryptionConfiguration
impl Sync for Samlv2AssertionEncryptionConfiguration
impl Unpin for Samlv2AssertionEncryptionConfiguration
impl UnwindSafe for Samlv2AssertionEncryptionConfiguration
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