pub struct OpenPGPKeyId(String);
Expand description
An OpenPGP Key ID.
The OpenPGPKeyId
type wraps a String
representing an OpenPGP Key ID,
ensuring that it consists of exactly 16 uppercase hexadecimal characters.
§Note
-
This type supports constructing from both uppercase and lowercase hexadecimal characters but guarantees to return the key ID in uppercase.
-
The usage of this type is highly discouraged as the keys may not be unique. This will lead to a linting error in the future.
§Examples
use std::str::FromStr;
use alpm_types::{Error, OpenPGPKeyId};
// Create OpenPGPKeyId from a valid key ID
let key = OpenPGPKeyId::from_str("2F2670AC164DB36F")?;
assert_eq!(key.as_str(), "2F2670AC164DB36F");
// Attempting to create an OpenPGPKeyId from an invalid key ID will fail
assert!(OpenPGPKeyId::from_str("INVALIDKEYID").is_err());
// Format as String
assert_eq!(format!("{key}"), "2F2670AC164DB36F");
Tuple Fields§
§0: String
Implementations§
Source§impl OpenPGPKeyId
impl OpenPGPKeyId
Sourcepub fn new(key_id: String) -> Result<Self, Error>
pub fn new(key_id: String) -> Result<Self, Error>
Creates a new OpenPGPKeyId
instance.
See OpenPGPKeyId::from_str
for more information on how the OpenPGP Key ID is validated.
Sourcepub fn into_inner(self) -> String
pub fn into_inner(self) -> String
Consumes the OpenPGPKeyId
and returns the inner String
.
Trait Implementations§
Source§impl Clone for OpenPGPKeyId
impl Clone for OpenPGPKeyId
Source§fn clone(&self) -> OpenPGPKeyId
fn clone(&self) -> OpenPGPKeyId
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for OpenPGPKeyId
impl Debug for OpenPGPKeyId
Source§impl<'de> Deserialize<'de> for OpenPGPKeyId
impl<'de> Deserialize<'de> for OpenPGPKeyId
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>,
Source§impl Display for OpenPGPKeyId
impl Display for OpenPGPKeyId
Source§impl From<OpenPGPKeyId> for OpenPGPIdentifier
impl From<OpenPGPKeyId> for OpenPGPIdentifier
Source§fn from(key_id: OpenPGPKeyId) -> Self
fn from(key_id: OpenPGPKeyId) -> Self
Source§impl FromStr for OpenPGPKeyId
impl FromStr for OpenPGPKeyId
Source§fn from_str(s: &str) -> Result<Self, Self::Err>
fn from_str(s: &str) -> Result<Self, Self::Err>
Creates a new OpenPGPKeyId
instance after validating that it follows the correct format.
A valid OpenPGP Key ID should be exactly 16 characters long and consist only
of digits (0-9
) and hexadecimal letters (A-F
).
§Errors
Returns an error if the OpenPGP Key ID is not valid.