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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// 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 Filter;
use ffi;
use glib::object::Downcast;
use glib::object::IsA;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std::mem;
use std::ptr;

glib_wrapper! {
    /// A filter for yEncoding or yDecoding a stream.
    ///
    /// # Implements
    ///
    /// [`FilterYencExt`](trait.FilterYencExt.html), [`FilterExt`](trait.FilterExt.html)
    pub struct FilterYenc(Object<ffi::GMimeFilterYenc, ffi::GMimeFilterYencClass>): Filter;

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

impl FilterYenc {
    /// Creates a new yEnc filter.
    /// ## `encode`
    /// encode vs decode
    ///
    /// # Returns
    ///
    /// a new yEnc filter.
    pub fn new(encode: bool) -> FilterYenc {
        unsafe {
            Filter::from_glib_full(ffi::g_mime_filter_yenc_new(encode.to_glib())).downcast_unchecked()
        }
    }
}

/// Trait containing all `FilterYenc` methods.
///
/// # Implementors
///
/// [`FilterYenc`](struct.FilterYenc.html)
pub trait FilterYencExt {
    /// Get the computed crc or (guint32) -1 on fail.
    ///
    /// # Returns
    ///
    /// the computed crc or (guint32) -1 on fail.
    fn get_crc(&self) -> u32;

    /// Get the computed part crc or (guint32) -1 on fail.
    ///
    /// # Returns
    ///
    /// the computed part crc or (guint32) -1 on fail.
    fn get_pcrc(&self) -> u32;

    /// Sets the current crc32 value on the yEnc filter `self` to `crc`.
    /// ## `crc`
    /// crc32
    fn set_crc(&self, crc: u32);

    /// Sets the current state of the yencoder/ydecoder
    /// ## `state`
    /// encode/decode state
    fn set_state(&self, state: i32);
}

impl<O: IsA<FilterYenc>> FilterYencExt for O {
    fn get_crc(&self) -> u32 {
        unsafe {
            ffi::g_mime_filter_yenc_get_crc(self.to_glib_none().0)
        }
    }

    fn get_pcrc(&self) -> u32 {
        unsafe {
            ffi::g_mime_filter_yenc_get_pcrc(self.to_glib_none().0)
        }
    }

    fn set_crc(&self, crc: u32) {
        unsafe {
            ffi::g_mime_filter_yenc_set_crc(self.to_glib_none().0, crc);
        }
    }

    fn set_state(&self, state: i32) {
        unsafe {
            ffi::g_mime_filter_yenc_set_state(self.to_glib_none().0, state);
        }
    }
}