#[repr(u32)]pub enum alpm_sigstatus_t {
ALPM_SIGSTATUS_VALID = 0,
ALPM_SIGSTATUS_KEY_EXPIRED = 1,
ALPM_SIGSTATUS_SIG_EXPIRED = 2,
ALPM_SIGSTATUS_KEY_UNKNOWN = 3,
ALPM_SIGSTATUS_KEY_DISABLED = 4,
ALPM_SIGSTATUS_INVALID = 5,
}
Expand description
PGP signature verification status return codes PGP signature verification status return codes
Variants§
ALPM_SIGSTATUS_VALID = 0
Signature is valid
ALPM_SIGSTATUS_KEY_EXPIRED = 1
The key has expired
ALPM_SIGSTATUS_SIG_EXPIRED = 2
The signature has expired
ALPM_SIGSTATUS_KEY_UNKNOWN = 3
The key is not in the keyring
ALPM_SIGSTATUS_KEY_DISABLED = 4
The key has been disabled
ALPM_SIGSTATUS_INVALID = 5
The signature is invalid
Trait Implementations§
Source§impl Clone for _alpm_sigstatus_t
impl Clone for _alpm_sigstatus_t
Source§fn clone(&self) -> _alpm_sigstatus_t
fn clone(&self) -> _alpm_sigstatus_t
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for _alpm_sigstatus_t
impl Debug for _alpm_sigstatus_t
Source§impl Hash for _alpm_sigstatus_t
impl Hash for _alpm_sigstatus_t
Source§impl PartialEq for _alpm_sigstatus_t
impl PartialEq for _alpm_sigstatus_t
impl Copy for _alpm_sigstatus_t
impl Eq for _alpm_sigstatus_t
impl StructuralPartialEq for _alpm_sigstatus_t
Auto Trait Implementations§
impl Freeze for _alpm_sigstatus_t
impl RefUnwindSafe for _alpm_sigstatus_t
impl Send for _alpm_sigstatus_t
impl Sync for _alpm_sigstatus_t
impl Unpin for _alpm_sigstatus_t
impl UnwindSafe for _alpm_sigstatus_t
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