File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- pub fn decode ( bytes : Vec < u8 > ) -> Option < String > {
1
+ pub fn decode ( bytes : Vec < u8 > ) -> Result < String , String > {
2
2
use flate2:: read:: GzDecoder ;
3
3
use std:: io:: Read ;
4
4
5
5
let mut decoder = GzDecoder :: new ( & bytes[ ..] ) ;
6
6
let mut xml = String :: new ( ) ;
7
7
8
8
match decoder. read_to_string ( & mut xml) {
9
- Ok ( _) => Some ( xml) ,
10
- Err ( _ ) => None ,
9
+ Ok ( _) => Ok ( xml) ,
10
+ Err ( error ) => Err ( error . to_string ( ) ) ,
11
11
}
12
12
}
13
13
14
- pub fn encode ( content : & str ) -> Option < Vec < u8 > > {
14
+ pub fn encode ( content : & str ) -> Result < Vec < u8 > , String > {
15
15
use flate2:: read:: GzEncoder ;
16
16
use flate2:: Compression ;
17
17
use std:: io:: Read ;
@@ -20,7 +20,7 @@ pub fn encode(content: &str) -> Option<Vec<u8>> {
20
20
let mut bytes = Vec :: new ( ) ;
21
21
22
22
match encoder. read_to_end ( & mut bytes) {
23
- Ok ( _) => Some ( bytes) ,
24
- Err ( _ ) => None ,
23
+ Ok ( _) => Ok ( bytes) ,
24
+ Err ( error ) => Err ( error . to_string ( ) ) ,
25
25
}
26
26
}
You can’t perform that action at this time.
0 commit comments