@@ -24,27 +24,27 @@ impl TagExt for EbmlTag {
24
24
todo ! ( )
25
25
}
26
26
27
- fn contains < ' a > ( & ' a self , key : Self :: RefKey < ' a > ) -> bool {
27
+ fn contains < ' a > ( & ' a self , _key : Self :: RefKey < ' a > ) -> bool {
28
28
todo ! ( )
29
29
}
30
30
31
31
fn is_empty ( & self ) -> bool {
32
32
todo ! ( )
33
33
}
34
34
35
- fn save_to ( & self , file : & mut File ) -> std:: result:: Result < ( ) , Self :: Err > {
35
+ fn save_to ( & self , _file : & mut File ) -> std:: result:: Result < ( ) , Self :: Err > {
36
36
todo ! ( )
37
37
}
38
38
39
- fn dump_to < W : Write > ( & self , writer : & mut W ) -> std:: result:: Result < ( ) , Self :: Err > {
39
+ fn dump_to < W : Write > ( & self , _writer : & mut W ) -> std:: result:: Result < ( ) , Self :: Err > {
40
40
todo ! ( )
41
41
}
42
42
43
- fn remove_from_path < P : AsRef < Path > > ( & self , path : P ) -> std:: result:: Result < ( ) , Self :: Err > {
43
+ fn remove_from_path < P : AsRef < Path > > ( & self , _path : P ) -> std:: result:: Result < ( ) , Self :: Err > {
44
44
todo ! ( )
45
45
}
46
46
47
- fn remove_from ( & self , file : & mut File ) -> std:: result:: Result < ( ) , Self :: Err > {
47
+ fn remove_from ( & self , _file : & mut File ) -> std:: result:: Result < ( ) , Self :: Err > {
48
48
todo ! ( )
49
49
}
50
50
@@ -81,7 +81,7 @@ impl SplitTag for EbmlTag {
81
81
impl MergeTag for SplitTagRemainder {
82
82
type Merged = EbmlTag ;
83
83
84
- fn merge_tag ( self , tag : Tag ) -> Self :: Merged {
84
+ fn merge_tag ( self , _tag : Tag ) -> Self :: Merged {
85
85
todo ! ( )
86
86
}
87
87
}
0 commit comments