Enum tugger_code_signing::Signability [−][src]
pub enum Signability {
Signable(Signable),
Unsignable,
UnsignableMachoError(AppleCodesignError),
PlatformUnsupported(&'static str),
}Expand description
Represents the results of a signability test.
Variants
A known entity which is signable.
Tuple Fields of Signable
0: SignableThe entity is not signable for undetermined reason.
The entity is a Mach-O binary that cannot be signed.
Tuple Fields of UnsignableMachoError
The entity is signable, but not from this platform. Details of the limitation are stored in a string.
Tuple Fields of PlatformUnsupported
0: &'static str