#[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
impl Copy for _alpm_sigvalidity_t
impl Eq for _alpm_sigvalidity_t
impl StructuralPartialEq for _alpm_sigvalidity_t
Auto Trait Implementations§
impl Freeze for _alpm_sigvalidity_t
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