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