use crate::{ffi, Auth};
use glib::prelude::*;
glib::wrapper! {
#[doc(alias = "SoupAuthNTLM")]
pub struct AuthNTLM(Object<ffi::SoupAuthNTLM>) @extends Auth;
match fn {
type_ => || ffi::soup_auth_ntlm_get_type(),
}
}
impl AuthNTLM {
pub fn builder() -> AuthNTLMBuilder {
AuthNTLMBuilder::new()
}
}
#[must_use = "The builder must be built to be used"]
pub struct AuthNTLMBuilder {
builder: glib::object::ObjectBuilder<'static, AuthNTLM>,
}
impl AuthNTLMBuilder {
fn new() -> Self {
Self {
builder: glib::object::Object::builder(),
}
}
pub fn authority(self, authority: impl Into<glib::GString>) -> Self {
Self {
builder: self.builder.property("authority", authority.into()),
}
}
pub fn is_for_proxy(self, is_for_proxy: bool) -> Self {
Self {
builder: self.builder.property("is-for-proxy", is_for_proxy),
}
}
pub fn realm(self, realm: impl Into<glib::GString>) -> Self {
Self {
builder: self.builder.property("realm", realm.into()),
}
}
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
pub fn build(self) -> AuthNTLM {
self.builder.build()
}
}