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
use crate::translate::*;
use std::ffi::CStr;
use std::fmt;
#[derive(Eq, PartialEq, Ord, PartialOrd, Hash, Clone, Copy)]
#[repr(transparent)]
#[doc(alias = "GQuark")]
pub struct Quark(ffi::GQuark);
impl Quark {
#[doc(alias = "g_quark_from_string")]
pub fn from_string(s: &str) -> Quark {
unsafe { from_glib(ffi::g_quark_from_string(s.to_glib_none().0)) }
}
#[allow(clippy::trivially_copy_pass_by_ref)]
#[doc(alias = "g_quark_to_string")]
pub fn to_string<'a>(&self) -> &'a str {
unsafe {
CStr::from_ptr(ffi::g_quark_to_string(self.into_glib()))
.to_str()
.unwrap()
}
}
#[doc(alias = "g_quark_try_string")]
pub fn try_string(s: &str) -> Option<Quark> {
unsafe {
match ffi::g_quark_try_string(s.to_glib_none().0) {
0 => None,
x => Some(from_glib(x)),
}
}
}
}
impl fmt::Debug for Quark {
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
f.write_str(Quark::to_string(self))
}
}
#[doc(hidden)]
impl FromGlib<ffi::GQuark> for Quark {
unsafe fn from_glib(value: ffi::GQuark) -> Self {
Self(value)
}
}
#[doc(hidden)]
impl IntoGlib for Quark {
type GlibType = ffi::GQuark;
fn into_glib(self) -> ffi::GQuark {
self.0
}
}