pve-api 0.1.0

A rust API library for Proxmox Virtual Environment
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: MIT
// Copyright (c) 2026 Luke Harding <luke@lukeh990.io>

use super::PveBuilder;

impl PveBuilder {
    pub fn weak_tls(mut self, value: bool) -> Self {
        self.weak_tls = Some(value);

        self
    }
}