pub struct CodeSigning {
pub aws_signer_job_id: Option<String>,
pub custom_code_signing: Option<CustomCodeSigning>,
pub start_signing_job_parameter: Option<StartSigningJobParameter>,
}Expand description
Describes the method to use when code signing a file.
Fields§
§aws_signer_job_id: Option<String>The ID of the AWSSignerJob which was created to sign the file.
custom_code_signing: Option<CustomCodeSigning>A custom method for code signing a file.
start_signing_job_parameter: Option<StartSigningJobParameter>Describes the code-signing job.
Trait Implementations§
Source§impl Clone for CodeSigning
impl Clone for CodeSigning
Source§fn clone(&self) -> CodeSigning
fn clone(&self) -> CodeSigning
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 CodeSigning
impl Debug for CodeSigning
Source§impl Default for CodeSigning
impl Default for CodeSigning
Source§fn default() -> CodeSigning
fn default() -> CodeSigning
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CodeSigning
impl<'de> Deserialize<'de> for CodeSigning
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 CodeSigning
impl PartialEq for CodeSigning
Source§impl Serialize for CodeSigning
impl Serialize for CodeSigning
impl StructuralPartialEq for CodeSigning
Auto Trait Implementations§
impl !Freeze for CodeSigning
impl RefUnwindSafe for CodeSigning
impl Send for CodeSigning
impl Sync for CodeSigning
impl Unpin for CodeSigning
impl UnwindSafe for CodeSigning
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