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

use crate::{ffi, CookieJar, CookieJarAcceptPolicy, SessionFeature};
use glib::{prelude::*, translate::*};

glib::wrapper! {
    #[doc(alias = "SoupCookieJarText")]
    pub struct CookieJarText(Object<ffi::SoupCookieJarText, ffi::SoupCookieJarTextClass>) @extends CookieJar, @implements SessionFeature;

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

impl CookieJarText {
    #[doc(alias = "soup_cookie_jar_text_new")]
    pub fn new(filename: &str, read_only: bool) -> CookieJarText {
        assert_initialized_main_thread!();
        unsafe {
            CookieJar::from_glib_full(ffi::soup_cookie_jar_text_new(
                filename.to_glib_none().0,
                read_only.into_glib(),
            ))
            .unsafe_cast()
        }
    }

    // rustdoc-stripper-ignore-next
    /// Creates a new builder-pattern struct instance to construct [`CookieJarText`] objects.
    ///
    /// This method returns an instance of [`CookieJarTextBuilder`](crate::builders::CookieJarTextBuilder) which can be used to create [`CookieJarText`] objects.
    pub fn builder() -> CookieJarTextBuilder {
        CookieJarTextBuilder::new()
    }

    pub fn filename(&self) -> Option<glib::GString> {
        ObjectExt::property(self, "filename")
    }
}

impl Default for CookieJarText {
    fn default() -> Self {
        glib::object::Object::new::<Self>()
    }
}

// rustdoc-stripper-ignore-next
/// A [builder-pattern] type to construct [`CookieJarText`] objects.
///
/// [builder-pattern]: https://doc.rust-lang.org/1.0.0/style/ownership/builders.html
#[must_use = "The builder must be built to be used"]
pub struct CookieJarTextBuilder {
    builder: glib::object::ObjectBuilder<'static, CookieJarText>,
}

impl CookieJarTextBuilder {
    fn new() -> Self {
        Self {
            builder: glib::object::Object::builder(),
        }
    }

    pub fn filename(self, filename: impl Into<glib::GString>) -> Self {
        Self {
            builder: self.builder.property("filename", filename.into()),
        }
    }

    pub fn accept_policy(self, accept_policy: CookieJarAcceptPolicy) -> Self {
        Self {
            builder: self.builder.property("accept-policy", accept_policy),
        }
    }

    pub fn read_only(self, read_only: bool) -> Self {
        Self {
            builder: self.builder.property("read-only", read_only),
        }
    }

    // rustdoc-stripper-ignore-next
    /// Build the [`CookieJarText`].
    #[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
    pub fn build(self) -> CookieJarText {
        self.builder.build()
    }
}