Enum tugger_apple_codesign::VerificationProblemType[][src]

pub enum VerificationProblemType {
Show variants IoError(Error), MachOParseError(Error), NoMachOSignatureData, MachOSignatureError(AppleCodesignError), LinkeditNotLastSegment, SignatureNotLastLinkeditData, NoCryptographicSignature, CmsError(CmsError), CmsOldSignatureAlgorithm(SignatureAlgorithm), NoCodeDirectory, CodeDirectoryOldDigestAlgorithm(DigestType), CodeDigestError(AppleCodesignError), CodeDigestMissingEntry(usizeVec<u8>), CodeDigestExtraEntry(usizeVec<u8>), CodeDigestMismatch(usizeVec<u8>, Vec<u8>), SlotDigestMissing(CodeSigningSlot), ExtraSlotDigest(CodeSigningSlotVec<u8>), SlotDigestMismatch(CodeSigningSlotVec<u8>, Vec<u8>), SlotDigestError(AppleCodesignError),
}

Describes a problem with verification.

Variants

IoError(Error)
MachOParseError(Error)
NoMachOSignatureData
MachOSignatureError(AppleCodesignError)
LinkeditNotLastSegment
SignatureNotLastLinkeditData
NoCryptographicSignature
CmsError(CmsError)
CmsOldSignatureAlgorithm(SignatureAlgorithm)
NoCodeDirectory
CodeDirectoryOldDigestAlgorithm(DigestType)
CodeDigestError(AppleCodesignError)
CodeDigestMissingEntry(usizeVec<u8>)
CodeDigestExtraEntry(usizeVec<u8>)
CodeDigestMismatch(usizeVec<u8>, Vec<u8>)
SlotDigestMissing(CodeSigningSlot)
ExtraSlotDigest(CodeSigningSlotVec<u8>)
SlotDigestMismatch(CodeSigningSlotVec<u8>, Vec<u8>)
SlotDigestError(AppleCodesignError)

Trait Implementations

impl Debug for VerificationProblemType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.