pub struct SigningService<'a> {Show 15 fields
pub files_to_process: &'a [PathBuf],
pub key_data: &'a [u8],
pub password_env_var: Option<&'a str>,
pub output_dir: &'a Path,
pub base_dir: &'a Path,
pub identity: &'a str,
pub host: &'a str,
pub version_info: Option<HashMap<String, GitInfo>>,
pub should_write_raw: bool,
pub should_write_meta: bool,
pub should_write_sbom: bool,
pub checksum_tasks: Vec<ChecksumTask<'a>>,
pub no_abspath: bool,
pub expires_at: Option<String>,
pub force: bool,
}Fields§
§files_to_process: &'a [PathBuf]§key_data: &'a [u8]§password_env_var: Option<&'a str>§output_dir: &'a Path§base_dir: &'a Path§identity: &'a str§host: &'a str§version_info: Option<HashMap<String, GitInfo>>§should_write_raw: bool§should_write_meta: bool§should_write_sbom: bool§checksum_tasks: Vec<ChecksumTask<'a>>§no_abspath: bool§expires_at: Option<String>§force: boolImplementations§
Source§impl<'a> SigningService<'a>
impl<'a> SigningService<'a>
pub fn execute(&self) -> Result<SigningSummary, AppError>
Auto Trait Implementations§
impl<'a> Freeze for SigningService<'a>
impl<'a> RefUnwindSafe for SigningService<'a>
impl<'a> Send for SigningService<'a>
impl<'a> Sync for SigningService<'a>
impl<'a> Unpin for SigningService<'a>
impl<'a> UnsafeUnpin for SigningService<'a>
impl<'a> UnwindSafe for SigningService<'a>
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