pub struct CodeSigningConfig {
pub csc_id: String,
pub csc_arn: String,
pub description: String,
pub allowed_publishers: Vec<String>,
pub untrusted_artifact_action: String,
pub last_modified: DateTime<Utc>,
}Fields§
§csc_id: String§csc_arn: String§description: String§allowed_publishers: Vec<String>§untrusted_artifact_action: String§last_modified: DateTime<Utc>Trait Implementations§
Source§impl Clone for CodeSigningConfig
impl Clone for CodeSigningConfig
Source§fn clone(&self) -> CodeSigningConfig
fn clone(&self) -> CodeSigningConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CodeSigningConfig
impl Debug for CodeSigningConfig
Source§impl<'de> Deserialize<'de> for CodeSigningConfig
impl<'de> Deserialize<'de> for CodeSigningConfig
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
Auto Trait Implementations§
impl Freeze for CodeSigningConfig
impl RefUnwindSafe for CodeSigningConfig
impl Send for CodeSigningConfig
impl Sync for CodeSigningConfig
impl Unpin for CodeSigningConfig
impl UnsafeUnpin for CodeSigningConfig
impl UnwindSafe for CodeSigningConfig
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