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
// 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, Auth, SessionFeature};
use glib::{prelude::*, translate::*};

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,
            );
        }
    }
}