Enum pyo3_pack::AuditWheelError[][src]

pub enum AuditWheelError {
    IOError(Error),
    ElfkitError(Error),
    ManylinuxValidationError(Vec<String>),
}

Error raised duing auditing an elf file for manylinux compatibility

Variants

The wheel couldn't be read

Reexports elfkit parsing erorrs

The elf file isn't manylinux compatible. Contains the list of offending libraries.

Trait Implementations

impl Debug for AuditWheelError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations