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
use crate::HSTSEnforcer;
use crate::SessionFeature;
use glib::object::Cast;
use glib::object::ObjectType as ObjectType_;
use glib::translate::*;
use glib::StaticType;
use std::fmt;
glib::wrapper! {
#[doc(alias = "SoupHSTSEnforcerDB")]
pub struct HSTSEnforcerDB(Object<ffi::SoupHSTSEnforcerDB, ffi::SoupHSTSEnforcerDBClass>) @extends HSTSEnforcer, @implements SessionFeature;
match fn {
type_ => || ffi::soup_hsts_enforcer_db_get_type(),
}
}
impl HSTSEnforcerDB {
#[doc(alias = "soup_hsts_enforcer_db_new")]
pub fn new(filename: &str) -> HSTSEnforcerDB {
assert_initialized_main_thread!();
unsafe {
HSTSEnforcer::from_glib_full(ffi::soup_hsts_enforcer_db_new(filename.to_glib_none().0))
.unsafe_cast()
}
}
pub fn filename(&self) -> Option<glib::GString> {
glib::ObjectExt::property(self, "filename")
}
}
impl fmt::Display for HSTSEnforcerDB {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("HSTSEnforcerDB")
}
}