pub struct CustomCodeSigning {
pub certificate_chain: Option<CodeSigningCertificateChain>,
pub hash_algorithm: Option<String>,
pub signature: Option<CodeSigningSignature>,
pub signature_algorithm: Option<String>,
}Expand description
Describes a custom method used to code sign a file.
Fields§
§certificate_chain: Option<CodeSigningCertificateChain>The certificate chain.
hash_algorithm: Option<String>The hash algorithm used to code sign the file.
signature: Option<CodeSigningSignature>The signature for the file.
signature_algorithm: Option<String>The signature algorithm used to code sign the file.
Trait Implementations§
Source§impl Clone for CustomCodeSigning
impl Clone for CustomCodeSigning
Source§fn clone(&self) -> CustomCodeSigning
fn clone(&self) -> CustomCodeSigning
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 CustomCodeSigning
impl Debug for CustomCodeSigning
Source§impl Default for CustomCodeSigning
impl Default for CustomCodeSigning
Source§fn default() -> CustomCodeSigning
fn default() -> CustomCodeSigning
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomCodeSigning
impl<'de> Deserialize<'de> for CustomCodeSigning
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 CustomCodeSigning
impl PartialEq for CustomCodeSigning
Source§impl Serialize for CustomCodeSigning
impl Serialize for CustomCodeSigning
impl StructuralPartialEq for CustomCodeSigning
Auto Trait Implementations§
impl !Freeze for CustomCodeSigning
impl RefUnwindSafe for CustomCodeSigning
impl Send for CustomCodeSigning
impl Sync for CustomCodeSigning
impl Unpin for CustomCodeSigning
impl UnwindSafe for CustomCodeSigning
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