@@ -62,6 +62,7 @@ pub fn render(
62
62
impl core:: ops:: Deref for R {
63
63
type Target = crate :: R <#name_uc_spec>;
64
64
65
+ #[ inline( always) ]
65
66
fn deref( & self ) -> & Self :: Target {
66
67
& self . 0
67
68
}
@@ -85,12 +86,14 @@ pub fn render(
85
86
impl core:: ops:: Deref for W {
86
87
type Target = crate :: W <#name_uc_spec>;
87
88
89
+ #[ inline( always) ]
88
90
fn deref( & self ) -> & Self :: Target {
89
91
& self . 0
90
92
}
91
93
}
92
94
93
95
impl core:: ops:: DerefMut for W {
96
+ #[ inline( always) ]
94
97
fn deref_mut( & mut self ) -> & mut Self :: Target {
95
98
& mut self . 0
96
99
}
@@ -445,6 +448,7 @@ pub fn fields(
445
448
impl core:: ops:: Deref for #name_pc_r {
446
449
type Target = crate :: FieldReader <#fty, #name_pc_a>;
447
450
451
+ #[ inline( always) ]
448
452
fn deref( & self ) -> & Self :: Target {
449
453
& self . 0
450
454
}
@@ -542,6 +546,7 @@ pub fn fields(
542
546
impl core:: ops:: Deref for #name_pc_r {
543
547
type Target = crate :: FieldReader <#fty, #name_pc_a>;
544
548
549
+ #[ inline( always) ]
545
550
fn deref( & self ) -> & Self :: Target {
546
551
& self . 0
547
552
}
@@ -562,6 +567,7 @@ pub fn fields(
562
567
impl core:: ops:: Deref for #name_pc_r {
563
568
type Target = crate :: FieldReader <#fty, #fty>;
564
569
570
+ #[ inline( always) ]
565
571
fn deref( & self ) -> & Self :: Target {
566
572
& self . 0
567
573
}
0 commit comments