pub struct EncryptionAlgorithmOptions {
pub allowed_values: Vec<String>,
pub default_value: String,
}
Expand description
The encryption algorithm options that are available to a code signing job.
Fields§
§allowed_values: Vec<String>
The set of accepted encryption algorithms that are allowed in a code signing job.
default_value: String
The default encryption algorithm that is used by a code signing job.
Trait Implementations§
Source§impl Clone for EncryptionAlgorithmOptions
impl Clone for EncryptionAlgorithmOptions
Source§fn clone(&self) -> EncryptionAlgorithmOptions
fn clone(&self) -> EncryptionAlgorithmOptions
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 EncryptionAlgorithmOptions
impl Debug for EncryptionAlgorithmOptions
Source§impl Default for EncryptionAlgorithmOptions
impl Default for EncryptionAlgorithmOptions
Source§fn default() -> EncryptionAlgorithmOptions
fn default() -> EncryptionAlgorithmOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EncryptionAlgorithmOptions
impl<'de> Deserialize<'de> for EncryptionAlgorithmOptions
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 EncryptionAlgorithmOptions
Auto Trait Implementations§
impl Freeze for EncryptionAlgorithmOptions
impl RefUnwindSafe for EncryptionAlgorithmOptions
impl Send for EncryptionAlgorithmOptions
impl Sync for EncryptionAlgorithmOptions
impl Unpin for EncryptionAlgorithmOptions
impl UnwindSafe for EncryptionAlgorithmOptions
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