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
// 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 InternetAddress;
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! {
    /// An RFC 2822 Mailbox address.
    ///
    /// # Implements
    ///
    /// [`InternetAddressMailboxExt`](trait.InternetAddressMailboxExt.html), [`InternetAddressExt`](trait.InternetAddressExt.html)
    pub struct InternetAddressMailbox(Object<ffi::InternetAddressMailbox, ffi::InternetAddressMailboxClass>): InternetAddress;

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

impl InternetAddressMailbox {
    /// Creates a new `InternetAddress` object with the specified `name` and
    /// `addr`.
    /// ## `name`
    /// person's name
    /// ## `addr`
    /// person's address
    ///
    /// # Returns
    ///
    /// a new `InternetAddressMailbox` object.
    ///
    /// Note: The `name` string should be in UTF-8.
    pub fn new(name: &str, addr: &str) -> InternetAddressMailbox {
        unsafe {
            InternetAddress::from_glib_full(ffi::internet_address_mailbox_new(name.to_glib_none().0, addr.to_glib_none().0)).downcast_unchecked()
        }
    }
}

/// Trait containing all `InternetAddressMailbox` methods.
///
/// # Implementors
///
/// [`InternetAddressMailbox`](struct.InternetAddressMailbox.html)
pub trait InternetAddressMailboxExt {
    /// Gets the addr-spec of the internet address mailbox.
    ///
    /// # Returns
    ///
    /// the addr-spec string.
    fn get_addr(&self) -> Option<String>;

    /// Gets the IDN ascii-encoded addr-spec.
    ///
    /// # Returns
    ///
    /// the encoded addr-spec string.
    fn get_idn_addr(&self) -> Option<String>;

    /// Set the mailbox address.
    /// ## `addr`
    /// contact's email address
    fn set_addr(&self, addr: &str);
}

impl<O: IsA<InternetAddressMailbox>> InternetAddressMailboxExt for O {
    fn get_addr(&self) -> Option<String> {
        unsafe {
            from_glib_none(ffi::internet_address_mailbox_get_addr(self.to_glib_none().0))
        }
    }

    fn get_idn_addr(&self) -> Option<String> {
        unsafe {
            from_glib_none(ffi::internet_address_mailbox_get_idn_addr(self.to_glib_none().0))
        }
    }

    fn set_addr(&self, addr: &str) {
        unsafe {
            ffi::internet_address_mailbox_set_addr(self.to_glib_none().0, addr.to_glib_none().0);
        }
    }
}