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
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from
// from gir-files (https://github.com/gtk-rs/gir-files.git)
// DO NOT EDIT

use glib::translate::*;
use std::fmt;

glib::wrapper! {
    ///
    ///
    /// ## Properties
    ///
    ///
    /// #### `document`
    ///  Readable | Writeable | Construct Only
    ///
    ///
    /// #### `key`
    ///  Readable | Writeable | Construct Only
    ///
    ///
    /// #### `priority`
    ///  Readable | Writeable | Construct Only
    ///
    ///
    /// #### `score`
    ///  Readable | Writeable | Construct Only
    ///
    /// # Implements
    ///
    /// [`trait@glib::ObjectExt`]
    #[doc(alias = "DzlFuzzyIndexMatch")]
    pub struct FuzzyIndexMatch(Object<ffi::DzlFuzzyIndexMatch, ffi::DzlFuzzyIndexMatchClass>);

    match fn {
        type_ => || ffi::dzl_fuzzy_index_match_get_type(),
    }
}

impl FuzzyIndexMatch {
    ///
    /// # Returns
    ///
    /// A [`glib::Variant`][struct@crate::glib::Variant].
    #[doc(alias = "dzl_fuzzy_index_match_get_document")]
    #[doc(alias = "get_document")]
    pub fn document(&self) -> Option<glib::Variant> {
        unsafe {
            from_glib_none(ffi::dzl_fuzzy_index_match_get_document(
                self.to_glib_none().0,
            ))
        }
    }

    #[doc(alias = "dzl_fuzzy_index_match_get_key")]
    #[doc(alias = "get_key")]
    pub fn key(&self) -> Option<glib::GString> {
        unsafe { from_glib_none(ffi::dzl_fuzzy_index_match_get_key(self.to_glib_none().0)) }
    }

    #[doc(alias = "dzl_fuzzy_index_match_get_priority")]
    #[doc(alias = "get_priority")]
    pub fn priority(&self) -> u32 {
        unsafe { ffi::dzl_fuzzy_index_match_get_priority(self.to_glib_none().0) }
    }

    #[doc(alias = "dzl_fuzzy_index_match_get_score")]
    #[doc(alias = "get_score")]
    pub fn score(&self) -> f32 {
        unsafe { ffi::dzl_fuzzy_index_match_get_score(self.to_glib_none().0) }
    }
}

impl fmt::Display for FuzzyIndexMatch {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str("FuzzyIndexMatch")
    }
}