Remove pub from internal setters

This commit is contained in:
Jon Häggblad
2024-04-04 22:13:56 +02:00
parent 03c702d498
commit 5dd2acfcac
+8 -7
View File
@@ -353,13 +353,13 @@ where
}
#[must_use]
pub fn custom_shutdown(mut self, shutdown: Option<TaskClient>) -> Self {
fn custom_shutdown(mut self, shutdown: Option<TaskClient>) -> Self {
self.custom_shutdown = shutdown;
self
}
#[must_use]
pub fn custom_topology_provider(
fn custom_topology_provider(
mut self,
provider: Option<Box<dyn TopologyProvider + Send + Sync>>,
) -> Self {
@@ -368,7 +368,7 @@ where
}
#[must_use]
pub fn custom_gateway_transceiver(
fn custom_gateway_transceiver(
mut self,
gateway_transceiver: Option<Box<dyn GatewayTransceiver + Send + Sync>>,
) -> Self {
@@ -377,19 +377,19 @@ where
}
#[must_use]
pub fn wireguard_mode(mut self, wireguard_mode: bool) -> Self {
fn wireguard_mode(mut self, wireguard_mode: bool) -> Self {
self.wireguard_mode = wireguard_mode;
self
}
#[must_use]
pub fn wait_for_gateway(mut self, wait_for_gateway: bool) -> Self {
fn wait_for_gateway(mut self, wait_for_gateway: bool) -> Self {
self.wait_for_gateway = wait_for_gateway;
self
}
#[must_use]
pub fn force_tls(mut self, must_use_tls: bool) -> Self {
fn force_tls(mut self, must_use_tls: bool) -> Self {
self.force_tls = must_use_tls;
self
}
@@ -562,7 +562,8 @@ where
/// Creates an associated [`BandwidthAcquireClient`] that can be used to acquire bandwidth
/// credentials for this client to consume.
pub fn create_bandwidth_client(
#[allow(unused)]
fn create_bandwidth_client(
&self,
mnemonic: String,
) -> Result<BandwidthAcquireClient<S::CredentialStore>> {