File tree 2 files changed +2
-6
lines changed
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -196,16 +196,12 @@ Keep in mind that you need to put everything your test needed in the same functi
196
196
### 0.1 to 0.2
197
197
198
198
- ` Path ` is changed from sized type to unsized type. Any code that cast ` Path ` to a raw pointer need
199
- to update otherwise you will got a fat pointer, which is Rust specific. You can get a pointer to
199
+ to update otherwise you will get a fat pointer, which is Rust specific. You can get a pointer to
200
200
` EFI_DEVICE_PATH_PROTOCOL ` via ` Path::as_bytes() ` .
201
201
- ` FileInfo ` is changed from sized type to unsized type in the same way as ` Path ` .
202
202
- ` File::info() ` now return ` Box<FileInfo> ` instead of ` Owned<FileInfo> ` when success.
203
203
- The second parameter of ` Owned::new() ` is changed to ` Dtor ` .
204
204
205
- ## Example Projects
206
-
207
- - [ TCG Boot] ( https://github.com/ultimaweapon/tcg-boot )
208
-
209
205
## License
210
206
211
207
MIT
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ pub enum PathNode<'a> {
164
164
MediaFilePath ( & ' a EfiStr ) ,
165
165
}
166
166
167
- impl < ' a > Display for PathNode < ' a > {
167
+ impl Display for PathNode < ' _ > {
168
168
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> core:: fmt:: Result {
169
169
match self {
170
170
PathNode :: MediaFilePath ( p) => p. fmt ( f) ,
You can’t perform that action at this time.
0 commit comments