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
// 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 a stream from Windows/DOS line endings to Unix line endings.
    ///
    /// # Implements
    ///
    /// [`FilterExt`](trait.FilterExt.html)
    pub struct FilterDos2Unix(Object<ffi::GMimeFilterDos2Unix, ffi::GMimeFilterDos2UnixClass>): Filter;

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

impl FilterDos2Unix {
    /// Creates a new `FilterDos2Unix` filter.
    /// ## `ensure_newline`
    /// `true` if the filter should ensure that the stream ends in a new line
    ///
    /// # Returns
    ///
    /// a new `FilterDos2Unix` filter.
    pub fn new(ensure_newline: bool) -> FilterDos2Unix {
        unsafe {
            Filter::from_glib_full(ffi::g_mime_filter_dos2unix_new(ensure_newline.to_glib())).downcast_unchecked()
        }
    }
}