Rollup merge of #48005 - panicbit:env_unimpl_send_sync, r=alexcrichton
Unimplement Send/Sync for ::env::{Args,ArgsOs,Vars,VarsOs} Fixes #48004
This commit is contained in:
commit
c88a6fe569
@ -723,6 +723,12 @@ pub fn args_os() -> ArgsOs {
|
||||
ArgsOs { inner: sys::args::args() }
|
||||
}
|
||||
|
||||
#[stable(feature = "env_unimpl_send_sync", since = "1.25.0")]
|
||||
impl !Send for Args {}
|
||||
|
||||
#[stable(feature = "env_unimpl_send_sync", since = "1.25.0")]
|
||||
impl !Sync for Args {}
|
||||
|
||||
#[stable(feature = "env", since = "1.0.0")]
|
||||
impl Iterator for Args {
|
||||
type Item = String;
|
||||
@ -754,6 +760,12 @@ impl fmt::Debug for Args {
|
||||
}
|
||||
}
|
||||
|
||||
#[stable(feature = "env_unimpl_send_sync", since = "1.25.0")]
|
||||
impl !Send for ArgsOs {}
|
||||
|
||||
#[stable(feature = "env_unimpl_send_sync", since = "1.25.0")]
|
||||
impl !Sync for ArgsOs {}
|
||||
|
||||
#[stable(feature = "env", since = "1.0.0")]
|
||||
impl Iterator for ArgsOs {
|
||||
type Item = OsString;
|
||||
|
Loading…
x
Reference in New Issue
Block a user