remove reason = "unstable" from #[unstable(...)]

This commit is contained in:
cyrgani
2026-01-16 13:54:40 +00:00
parent 8cb5da3aad
commit 035bcfa46d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -47,5 +47,5 @@
target_vendor = "apple",
target_os = "cygwin",
))]
#[unstable(feature = "peer_credentials_unix_socket", issue = "42839", reason = "unstable")]
#[unstable(feature = "peer_credentials_unix_socket", issue = "42839")]
pub use self::ucred::*;
+1 -1
View File
@@ -251,7 +251,7 @@ pub fn peer_addr(&self) -> io::Result<SocketAddr> {
/// Ok(())
/// }
/// ```
#[unstable(feature = "peer_credentials_unix_socket", issue = "42839", reason = "unstable")]
#[unstable(feature = "peer_credentials_unix_socket", issue = "42839")]
#[cfg(any(
target_os = "android",
target_os = "linux",
+1 -1
View File
@@ -7,7 +7,7 @@
use libc::{gid_t, pid_t, uid_t};
/// Credentials for a UNIX process for credentials passing.
#[unstable(feature = "peer_credentials_unix_socket", issue = "42839", reason = "unstable")]
#[unstable(feature = "peer_credentials_unix_socket", issue = "42839")]
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
pub struct UCred {
/// The UID part of the peer credential. This is the effective UID of the process at the domain