Enum alpm_sys::alpm_sigvalidity_t
source · #[repr(u32)]pub enum alpm_sigvalidity_t {
ALPM_SIGVALIDITY_FULL = 0,
ALPM_SIGVALIDITY_MARGINAL = 1,
ALPM_SIGVALIDITY_NEVER = 2,
ALPM_SIGVALIDITY_UNKNOWN = 3,
}
Expand description
The trust level of a PGP key The trust level of a PGP key
Variants§
ALPM_SIGVALIDITY_FULL = 0
The signature is fully trusted
ALPM_SIGVALIDITY_MARGINAL = 1
The signature is marginally trusted
ALPM_SIGVALIDITY_NEVER = 2
The signature is never trusted
ALPM_SIGVALIDITY_UNKNOWN = 3
The signature has unknown trust
Trait Implementations§
source§impl Clone for _alpm_sigvalidity_t
impl Clone for _alpm_sigvalidity_t
source§fn clone(&self) -> _alpm_sigvalidity_t
fn clone(&self) -> _alpm_sigvalidity_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_sigvalidity_t
impl Debug for _alpm_sigvalidity_t
source§impl Hash for _alpm_sigvalidity_t
impl Hash for _alpm_sigvalidity_t
source§impl PartialEq for _alpm_sigvalidity_t
impl PartialEq for _alpm_sigvalidity_t
source§fn eq(&self, other: &_alpm_sigvalidity_t) -> bool
fn eq(&self, other: &_alpm_sigvalidity_t) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for _alpm_sigvalidity_t
impl Eq for _alpm_sigvalidity_t
impl StructuralEq for _alpm_sigvalidity_t
impl StructuralPartialEq for _alpm_sigvalidity_t
Auto Trait Implementations§
impl RefUnwindSafe for _alpm_sigvalidity_t
impl Send for _alpm_sigvalidity_t
impl Sync for _alpm_sigvalidity_t
impl Unpin for _alpm_sigvalidity_t
impl UnwindSafe for _alpm_sigvalidity_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