Struct apple_codesign::BundleSigner
source · [−]pub struct BundleSigner { /* private fields */ }
Expand description
A primitive for signing an Apple bundle.
This type handles the high-level logic of signing an Apple bundle (e.g.
a .app
or .framework
directory with a well-defined structure).
This type handles the signing of nested bundles (if present) such that they chain to the main bundle’s signature.
Implementations
sourceimpl BundleSigner
impl BundleSigner
sourcepub fn new_from_path(path: impl AsRef<Path>) -> Result<Self, AppleCodesignError>
pub fn new_from_path(path: impl AsRef<Path>) -> Result<Self, AppleCodesignError>
Construct a new instance given the path to an on-disk bundle.
The path should be the root directory of the bundle. e.g. MyApp.app
.
sourcepub fn write_signed_bundle(
&self,
log: &Logger,
dest_dir: impl AsRef<Path>,
settings: &SigningSettings<'_>
) -> Result<DirectoryBundle, AppleCodesignError>
pub fn write_signed_bundle(
&self,
log: &Logger,
dest_dir: impl AsRef<Path>,
settings: &SigningSettings<'_>
) -> Result<DirectoryBundle, AppleCodesignError>
Write a signed bundle to the given destination directory.
The destination directory can be the same as the source directory. However, if this is done and an error occurs in the middle of signing, the bundle may be left in an inconsistent or corrupted state and may not be usable.
Auto Trait Implementations
impl RefUnwindSafe for BundleSigner
impl Send for BundleSigner
impl Sync for BundleSigner
impl Unpin for BundleSigner
impl UnwindSafe for BundleSigner
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more