1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// This file was generated by gir (https://github.com/gtk-rs/gir @ fe7a6ff+)
// from gir-files (https://github.com/gtk-rs/gir-files @ b215ee8)
// DO NOT EDIT

use CryptoContext;
use ffi;
use glib::object::Downcast;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std::mem;
use std::ptr;

glib_wrapper! {
    /// A PKCS7 crypto context.
    ///
    /// # Implements
    ///
    /// [`CryptoContextExt`](trait.CryptoContextExt.html)
    pub struct Pkcs7Context(Object<ffi::GMimePkcs7Context, ffi::GMimePkcs7ContextClass>): CryptoContext;

    match fn {
        get_type => || ffi::g_mime_pkcs7_context_get_type(),
    }
}

impl Pkcs7Context {
    /// Creates a new pkcs7 crypto context object.
    ///
    /// # Returns
    ///
    /// a new pkcs7 crypto context object.
    pub fn new() -> Pkcs7Context {
        unsafe {
            CryptoContext::from_glib_full(ffi::g_mime_pkcs7_context_new()).downcast_unchecked()
        }
    }
}

impl Default for Pkcs7Context {
    fn default() -> Self {
        Self::new()
    }
}