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
// 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::translate::*;
use glib_ffi;
use gobject_ffi;
use std::mem;
use std::ptr;

glib_wrapper! {
    /// A filter to convert between charsets.
    ///
    /// # Implements
    ///
    /// [`FilterExt`](trait.FilterExt.html)
    pub struct FilterCharset(Object<ffi::GMimeFilterCharset, ffi::GMimeFilterCharsetClass>): Filter;

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

impl FilterCharset {
    /// Creates a new `FilterCharset` filter.
    /// ## `from_charset`
    /// charset to convert from
    /// ## `to_charset`
    /// charset to convert to
    ///
    /// # Returns
    ///
    /// a new charset filter or `None` if the charset conversion is
    /// not possible.
    pub fn new(from_charset: &str, to_charset: &str) -> FilterCharset {
        unsafe {
            Filter::from_glib_full(ffi::g_mime_filter_charset_new(from_charset.to_glib_none().0, to_charset.to_glib_none().0)).downcast_unchecked()
        }
    }
}