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
use crate::Auth;
use crate::SessionFeature;
use glib::object::IsA;
use glib::translate::*;
use std::fmt;
glib::wrapper! {
#[doc(alias = "SoupAuthManager")]
pub struct AuthManager(Object<ffi::SoupAuthManager, ffi::SoupAuthManagerClass>) @implements SessionFeature;
match fn {
type_ => || ffi::soup_auth_manager_get_type(),
}
}
impl AuthManager {
#[doc(alias = "soup_auth_manager_clear_cached_credentials")]
pub fn clear_cached_credentials(&self) {
unsafe {
ffi::soup_auth_manager_clear_cached_credentials(self.to_glib_none().0);
}
}
#[doc(alias = "soup_auth_manager_use_auth")]
pub fn use_auth(&self, uri: &glib::Uri, auth: &impl IsA<Auth>) {
unsafe {
ffi::soup_auth_manager_use_auth(
self.to_glib_none().0,
uri.to_glib_none().0,
auth.as_ref().to_glib_none().0,
);
}
}
}
impl fmt::Display for AuthManager {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("AuthManager")
}
}