pub enum OpenPGPIdentifier {
OpenPGPKeyId(OpenPGPKeyId),
OpenPGPv4Fingerprint(OpenPGPv4Fingerprint),
}
Expand description
An OpenPGP key identifier.
The OpenPGPIdentifier
enum represents a valid OpenPGP identifier, which can be either an
OpenPGP Key ID or an OpenPGP v4 fingerprint.
This type wraps an OpenPGPKeyId
and an OpenPGPv4Fingerprint
and provides a unified
interface for both.
§Examples
use std::str::FromStr;
use alpm_types::{Error, OpenPGPIdentifier, OpenPGPKeyId, OpenPGPv4Fingerprint};
// Create a OpenPGPIdentifier from a valid OpenPGP v4 fingerprint
let key = OpenPGPIdentifier::from_str("4A0C4DFFC02E1A7ED969ED231C2358A25A10D94E")?;
assert_eq!(
key,
OpenPGPIdentifier::OpenPGPv4Fingerprint(OpenPGPv4Fingerprint::from_str(
"4A0C4DFFC02E1A7ED969ED231C2358A25A10D94E"
)?)
);
assert_eq!(key.to_string(), "4A0C4DFFC02E1A7ED969ED231C2358A25A10D94E");
assert_eq!(
key,
OpenPGPv4Fingerprint::from_str("4A0C4DFFC02E1A7ED969ED231C2358A25A10D94E")?.into()
);
// Create a OpenPGPIdentifier from a valid OpenPGP Key ID
let key = OpenPGPIdentifier::from_str("2F2670AC164DB36F")?;
assert_eq!(
key,
OpenPGPIdentifier::OpenPGPKeyId(OpenPGPKeyId::from_str("2F2670AC164DB36F")?)
);
assert_eq!(key.to_string(), "2F2670AC164DB36F");
assert_eq!(key, OpenPGPKeyId::from_str("2F2670AC164DB36F")?.into());
Variants§
OpenPGPKeyId(OpenPGPKeyId)
An OpenPGP Key ID.
OpenPGPv4Fingerprint(OpenPGPv4Fingerprint)
An OpenPGP v4 fingerprint.
Trait Implementations§
Source§impl Clone for OpenPGPIdentifier
impl Clone for OpenPGPIdentifier
Source§fn clone(&self) -> OpenPGPIdentifier
fn clone(&self) -> OpenPGPIdentifier
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 OpenPGPIdentifier
impl Debug for OpenPGPIdentifier
Source§impl<'de> Deserialize<'de> for OpenPGPIdentifier
impl<'de> Deserialize<'de> for OpenPGPIdentifier
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for OpenPGPIdentifier
impl Display for OpenPGPIdentifier
Source§impl From<OpenPGPKeyId> for OpenPGPIdentifier
impl From<OpenPGPKeyId> for OpenPGPIdentifier
Source§fn from(key_id: OpenPGPKeyId) -> Self
fn from(key_id: OpenPGPKeyId) -> Self
Converts to this type from the input type.
Source§impl From<OpenPGPv4Fingerprint> for OpenPGPIdentifier
impl From<OpenPGPv4Fingerprint> for OpenPGPIdentifier
Source§fn from(fingerprint: OpenPGPv4Fingerprint) -> Self
fn from(fingerprint: OpenPGPv4Fingerprint) -> Self
Converts to this type from the input type.
Source§impl FromStr for OpenPGPIdentifier
impl FromStr for OpenPGPIdentifier
Source§impl PartialEq for OpenPGPIdentifier
impl PartialEq for OpenPGPIdentifier
Source§impl Serialize for OpenPGPIdentifier
impl Serialize for OpenPGPIdentifier
impl Eq for OpenPGPIdentifier
impl StructuralPartialEq for OpenPGPIdentifier
Auto Trait Implementations§
impl Freeze for OpenPGPIdentifier
impl RefUnwindSafe for OpenPGPIdentifier
impl Send for OpenPGPIdentifier
impl Sync for OpenPGPIdentifier
impl Unpin for OpenPGPIdentifier
impl UnwindSafe for OpenPGPIdentifier
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