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 {
723
723
ArgsOs { inner : sys:: args:: args ( ) }
724
724
}
725
725
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
+
726
732
#[ stable( feature = "env" , since = "1.0.0" ) ]
727
733
impl Iterator for Args {
728
734
type Item = String ;
@@ -754,6 +760,12 @@ impl fmt::Debug for Args {
754
760
}
755
761
}
756
762
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
+
757
769
#[ stable( feature = "env" , since = "1.0.0" ) ]
758
770
impl Iterator for ArgsOs {
759
771
type Item = OsString ;
You can’t perform that action at this time.
0 commit comments