pub struct Subkey<'key>(/* private fields */);
Expand description
Upstream documentation: gpgme_subkey_t
Implementations§
Source§impl<'key> Subkey<'key>
impl<'key> Subkey<'key>
pub unsafe fn from_raw(raw: gpgme_subkey_t) -> Self
pub fn as_raw(&self) -> gpgme_subkey_t
pub fn into_raw(self) -> gpgme_subkey_t
pub fn id(&self) -> Result<&'key str, Option<Utf8Error>>
pub fn id_raw(&self) -> Option<&'key CStr>
pub fn fingerprint(&self) -> Result<&'key str, Option<Utf8Error>>
pub fn fingerprint_raw(&self) -> Option<&'key CStr>
pub fn creation_time(&self) -> Option<SystemTime>
pub fn expiration_time(&self) -> Option<SystemTime>
pub fn never_expires(&self) -> bool
pub fn is_bad(&self) -> bool
pub fn is_revoked(&self) -> bool
pub fn is_expired(&self) -> bool
pub fn is_invalid(&self) -> bool
pub fn is_disabled(&self) -> bool
pub fn can_encrypt(&self) -> bool
pub fn can_sign(&self) -> bool
pub fn can_certify(&self) -> bool
pub fn can_authenticate(&self) -> bool
pub fn is_qualified(&self) -> bool
pub fn is_card_key(&self) -> bool
pub fn is_secret(&self) -> bool
pub fn is_de_vs(&self) -> bool
pub fn algorithm(&self) -> KeyAlgorithm
Sourcepub fn algorithm_name(&self) -> Result<String>
pub fn algorithm_name(&self) -> Result<String>
Upstream documentation: gpgme_pubkey_algo_string
pub fn keygrip(&self) -> Result<&'key str, Option<Utf8Error>>
pub fn keygrip_raw(&self) -> Option<&'key CStr>
pub fn length(&self) -> usize
pub fn card_serial_number(&self) -> Result<&'key str, Option<Utf8Error>>
pub fn card_serial_number_raw(&self) -> Option<&'key CStr>
pub fn curve(&self) -> Result<&'key str, Option<Utf8Error>>
pub fn curve_raw(&self) -> Option<&'key CStr>
Trait Implementations§
impl<'key> Copy for Subkey<'key>
impl Send for Subkey<'_>
impl Sync for Subkey<'_>
Auto Trait Implementations§
impl<'key> Freeze for Subkey<'key>
impl<'key> RefUnwindSafe for Subkey<'key>
impl<'key> Unpin for Subkey<'key>
impl<'key> UnwindSafe for Subkey<'key>
Blanket Implementations§
Source§impl<Src, Scheme> ApproxFrom<Src, Scheme> for Srcwhere
Scheme: ApproxScheme,
impl<Src, Scheme> ApproxFrom<Src, Scheme> for Srcwhere
Scheme: ApproxScheme,
Source§fn approx_from(src: Src) -> Result<Src, <Src as ApproxFrom<Src, Scheme>>::Err>
fn approx_from(src: Src) -> Result<Src, <Src as ApproxFrom<Src, Scheme>>::Err>
Convert the given value into an approximately equivalent representation.
Source§impl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Srcwhere
Dst: ApproxFrom<Src, Scheme>,
Scheme: ApproxScheme,
impl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Srcwhere
Dst: ApproxFrom<Src, Scheme>,
Scheme: ApproxScheme,
Source§type Err = <Dst as ApproxFrom<Src, Scheme>>::Err
type Err = <Dst as ApproxFrom<Src, Scheme>>::Err
The error type produced by a failed conversion.
Source§fn approx_into(self) -> Result<Dst, <Src as ApproxInto<Dst, Scheme>>::Err>
fn approx_into(self) -> Result<Dst, <Src as ApproxInto<Dst, Scheme>>::Err>
Convert the subject into an approximately equivalent representation.
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, Dst> ConvAsUtil<Dst> for T
impl<T, Dst> ConvAsUtil<Dst> for T
Source§impl<T> ConvUtil for T
impl<T> ConvUtil for T
Source§fn approx_as<Dst>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst>,
fn approx_as<Dst>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst>,
Approximate the subject to a given type with the default scheme.
Source§fn approx_as_by<Dst, Scheme>(self) -> Result<Dst, Self::Err>
fn approx_as_by<Dst, Scheme>(self) -> Result<Dst, Self::Err>
Approximate the subject to a given type with a specific scheme.