[][src]Struct melib::gpgme::bindings::_gpgme_key_sig

#[repr(C)]pub struct _gpgme_key_sig {
    pub next: *mut _gpgme_key_sig,
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4], u32>,
    pub pubkey_algo: u32,
    pub keyid: *mut c_char,
    pub _keyid: [c_char; 17],
    pub timestamp: c_long,
    pub expires: c_long,
    pub status: c_uint,
    pub class: c_uint,
    pub uid: *mut c_char,
    pub name: *mut c_char,
    pub email: *mut c_char,
    pub comment: *mut c_char,
    pub sig_class: c_uint,
    pub notations: *mut _gpgme_sig_notation,
    pub _last_notation: *mut _gpgme_sig_notation,
}

Fields

next: *mut _gpgme_key_sig_bitfield_1: __BindgenBitfieldUnit<[u8; 4], u32>pubkey_algo: u32keyid: *mut c_char_keyid: [c_char; 17]timestamp: c_longexpires: c_longstatus: c_uintclass: c_uintuid: *mut c_charname: *mut c_charemail: *mut c_charcomment: *mut c_charsig_class: c_uintnotations: *mut _gpgme_sig_notation_last_notation: *mut _gpgme_sig_notation

Implementations

impl _gpgme_key_sig[src]

pub fn revoked(&self) -> c_uint[src]

pub fn set_revoked(&mut self, val: c_uint)[src]

pub fn expired(&self) -> c_uint[src]

pub fn set_expired(&mut self, val: c_uint)[src]

pub fn invalid(&self) -> c_uint[src]

pub fn set_invalid(&mut self, val: c_uint)[src]

pub fn exportable(&self) -> c_uint[src]

pub fn set_exportable(&mut self, val: c_uint)[src]

pub fn _unused(&self) -> c_uint[src]

pub fn set__unused(&mut self, val: c_uint)[src]

pub fn new_bitfield_1(
    revoked: c_uint,
    expired: c_uint,
    invalid: c_uint,
    exportable: c_uint,
    _unused: c_uint
) -> __BindgenBitfieldUnit<[u8; 4], u32>
[src]

Trait Implementations

impl Clone for _gpgme_key_sig[src]

impl Copy for _gpgme_key_sig[src]

impl Debug for _gpgme_key_sig[src]

Auto Trait Implementations

impl RefUnwindSafe for _gpgme_key_sig

impl !Send for _gpgme_key_sig

impl !Sync for _gpgme_key_sig

impl Unpin for _gpgme_key_sig

impl UnwindSafe for _gpgme_key_sig

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]