@@ -1002,8 +1002,8 @@ struct siginfo_fault {
1002
1002
trapno : :: c_int ,
1003
1003
pc : * mut :: caddr_t ,
1004
1004
}
1005
- impl Copy for siginfo_fault { }
1006
- impl Clone for siginfo_fault {
1005
+ impl :: Copy for siginfo_fault { }
1006
+ impl :: Clone for siginfo_fault {
1007
1007
fn clone ( & self ) -> Self {
1008
1008
* self
1009
1009
}
@@ -1015,8 +1015,8 @@ struct siginfo_cldval {
1015
1015
status : :: c_int ,
1016
1016
stime : :: clock_t ,
1017
1017
}
1018
- impl Copy for siginfo_cldval { }
1019
- impl Clone for siginfo_cldval {
1018
+ impl :: Copy for siginfo_cldval { }
1019
+ impl :: Clone for siginfo_cldval {
1020
1020
fn clone ( & self ) -> Self {
1021
1021
* self
1022
1022
}
@@ -1029,8 +1029,8 @@ struct siginfo_killval {
1029
1029
// Pad out to match the SIGCLD value size
1030
1030
_pad : * mut :: c_void ,
1031
1031
}
1032
- impl Copy for siginfo_killval { }
1033
- impl Clone for siginfo_killval {
1032
+ impl :: Copy for siginfo_killval { }
1033
+ impl :: Clone for siginfo_killval {
1034
1034
fn clone ( & self ) -> Self {
1035
1035
* self
1036
1036
}
@@ -1043,8 +1043,8 @@ struct siginfo_sigcld {
1043
1043
ctid : :: ctid_t ,
1044
1044
zoneid : :: zoneid_t ,
1045
1045
}
1046
- impl Copy for siginfo_sigcld { }
1047
- impl Clone for siginfo_sigcld {
1046
+ impl :: Copy for siginfo_sigcld { }
1047
+ impl :: Clone for siginfo_sigcld {
1048
1048
fn clone ( & self ) -> Self {
1049
1049
* self
1050
1050
}
@@ -1057,15 +1057,15 @@ struct siginfo_kill {
1057
1057
ctid : :: ctid_t ,
1058
1058
zoneid : :: zoneid_t ,
1059
1059
}
1060
- impl Copy for siginfo_kill { }
1061
- impl Clone for siginfo_kill {
1060
+ impl :: Copy for siginfo_kill { }
1061
+ impl :: Clone for siginfo_kill {
1062
1062
fn clone ( & self ) -> Self {
1063
1063
* self
1064
1064
}
1065
1065
}
1066
1066
1067
1067
impl siginfo_t {
1068
- unsafe fn sidata < T : Copy > ( & self ) -> T {
1068
+ unsafe fn sidata < T : :: Copy > ( & self ) -> T {
1069
1069
* ( ( & self . __data_pad ) as * const :: c_int as * const T )
1070
1070
}
1071
1071
pub unsafe fn si_addr ( & self ) -> * mut :: c_void {
0 commit comments