File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -566,6 +566,9 @@ impl OsString {
566
566
self . inner . truncate ( len) ;
567
567
}
568
568
569
+ /// More well behaving alternative to allowing outer types
570
+ /// full mutable access to the core `Vec`.
571
+ /// Provides plumbing to core `Vec::extend_from_slice`.
569
572
#[ inline]
570
573
pub ( crate ) fn extend_from_slice ( & mut self , other : & [ u8 ] ) {
571
574
self . inner . extend_from_slice ( other) ;
Original file line number Diff line number Diff line change @@ -216,6 +216,9 @@ impl Buf {
216
216
self . inner . truncate ( len) ;
217
217
}
218
218
219
+ /// More well behaving alternative to allowing outer types
220
+ /// full mutable access to the core `Vec`.
221
+ /// Provides plumbing to core `Vec::extend_from_slice`.
219
222
#[ inline]
220
223
pub ( crate ) fn extend_from_slice ( & mut self , other : & [ u8 ] ) {
221
224
self . inner . extend_from_slice ( other) ;
You can’t perform that action at this time.
0 commit comments