Skip to main content

pve_api/builder/
weak_tls.rs

1// SPDX-License-Identifier: MIT
2// Copyright (c) 2026 Luke Harding <luke@lukeh990.io>
3
4use super::PveBuilder;
5
6impl PveBuilder {
7    pub fn weak_tls(mut self, value: bool) -> Self {
8        self.weak_tls = Some(value);
9
10        self
11    }
12}