mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
remove reason = "unstable" from #[unstable(...)]
This commit is contained in:
@@ -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::*;
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user