File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -723,6 +723,12 @@ pub fn args_os() -> ArgsOs {
723723 ArgsOs { inner : sys:: args:: args ( ) }
724724}
725725
726+ #[ stable( feature = "env_unimpl_send_sync" , since = "1.25.0" ) ]
727+ impl !Send for Args { }
728+
729+ #[ stable( feature = "env_unimpl_send_sync" , since = "1.25.0" ) ]
730+ impl !Sync for Args { }
731+
726732#[ stable( feature = "env" , since = "1.0.0" ) ]
727733impl Iterator for Args {
728734 type Item = String ;
@@ -754,6 +760,12 @@ impl fmt::Debug for Args {
754760 }
755761}
756762
763+ #[ stable( feature = "env_unimpl_send_sync" , since = "1.25.0" ) ]
764+ impl !Send for ArgsOs { }
765+
766+ #[ stable( feature = "env_unimpl_send_sync" , since = "1.25.0" ) ]
767+ impl !Sync for ArgsOs { }
768+
757769#[ stable( feature = "env" , since = "1.0.0" ) ]
758770impl Iterator for ArgsOs {
759771 type Item = OsString ;
You can’t perform that action at this time.
0 commit comments