[−][src]Enum sequoia_openpgp::KeyHandle
Identifies certificates and keys.
A KeyHandle is either a Fingerprint or a KeyID.
Variants
Fingerprint(Fingerprint)A Fingerprint.
KeyID(KeyID)A KeyID.
Implementations
impl KeyHandle[src]
pub fn as_slice(&self) -> &[u8][src]
Returns a reference to the raw identifier.
pub fn aliases<H>(&self, other: H) -> bool where
H: Borrow<KeyHandle>, [src]
H: Borrow<KeyHandle>,
Returns whether self and other could be aliases of each other.
KeyHandle's PartialEq implementation cannot assert that a
Fingerprint and a KeyID are equal, because distinct
fingerprints may have the same KeyID, and PartialEq must
be transitive, i.e.,
a == b and b == c implies a == c.
That is, if fpr1 and fpr2 are distinct fingerprints with the
same key ID then:
fpr1 == keyid and fpr2 == keyid, but fpr1 != fpr2.
In these cases (and only these cases) KeyHandle's
PartialOrd implementation returns None to correctly
indicate that a comparison is not possible.
This definition of equality makes searching for a given
KeyHandle using PartialEq awkward. This function fills
that gap. It answers the question: given two KeyHandles,
could they be aliases? That is, it implements the desired,
non-transitive equality relation:
// fpr1 and fpr2 are different fingerprints with the same KeyID. assert!(! fpr1.eq(&fpr2)); assert!(fpr1.aliases(&keyid)); assert!(fpr2.aliases(&keyid)); assert!(! fpr1.aliases(&fpr2));
Trait Implementations
impl Clone for KeyHandle[src]
impl Debug for KeyHandle[src]
impl Display for KeyHandle[src]
impl<'_> From<&'_ Fingerprint> for KeyHandle[src]
fn from(i: &Fingerprint) -> Self[src]
impl<'_> From<&'_ KeyHandle> for KeyID[src]
impl<'_> From<&'_ KeyID> for KeyHandle[src]
impl From<Fingerprint> for KeyHandle[src]
fn from(i: Fingerprint) -> Self[src]
impl From<KeyHandle> for KeyID[src]
impl From<KeyID> for KeyHandle[src]
impl Hash for KeyHandle[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl LowerHex for KeyHandle[src]
impl PartialEq<KeyHandle> for KeyHandle[src]
impl PartialOrd<KeyHandle> for KeyHandle[src]
fn partial_cmp(&self, other: &KeyHandle) -> Option<Ordering>[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl<'_> TryFrom<&'_ KeyHandle> for Fingerprint[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(i: &KeyHandle) -> Result<Self>[src]
impl TryFrom<KeyHandle> for Fingerprint[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(i: KeyHandle) -> Result<Self>[src]
impl UpperHex for KeyHandle[src]
Auto Trait Implementations
impl RefUnwindSafe for KeyHandle
impl Send for KeyHandle
impl Sync for KeyHandle
impl Unpin for KeyHandle
impl UnwindSafe for KeyHandle
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,