We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SessionBuilder::control_socket
1 parent d4da1f3 commit 9f11352Copy full SHA for 9f11352
src/builder.rs
@@ -127,6 +127,8 @@ impl SessionBuilder {
127
/// be created.
128
///
129
/// If not set, `./` will be used (the current directory).
130
+ #[cfg(not(windows))]
131
+ #[cfg_attr(docsrs, doc(cfg(not(windows))))]
132
pub fn control_directory(&mut self, p: impl AsRef<Path>) -> &mut Self {
133
self.control_dir = Some(p.as_ref().to_path_buf());
134
self
src/changelog.rs
@@ -6,6 +6,7 @@ use crate::*;
6
/// ## Changed
7
/// - Make [`Session::check`] available only on unix.
8
/// - Make [`Socket::UnixSocket`] available only on unix.
9
+/// - Make [`SessionBuilder::control_socket`] available only on unix.
10
pub mod unreleased {}
11
12
/// ## Fixed
0 commit comments