@@ -4,8 +4,7 @@ use serde::forward_to_deserialize_any;
4
4
use serde:: serde_if_integer128;
5
5
use std:: convert:: TryInto ;
6
6
7
- use super :: MaxMindDBError ;
8
- use super :: MaxMindDBError :: DecodingError ;
7
+ use super :: MaxMindDbError ;
9
8
10
9
fn to_usize ( base : u8 , bytes : & [ u8 ] ) -> usize {
11
10
bytes
@@ -134,7 +133,7 @@ impl<'de> Decoder<'de> {
134
133
14 => Value :: Bool ( self . decode_bool ( size) ?) ,
135
134
15 => Value :: F32 ( self . decode_float ( size) ?) ,
136
135
u => {
137
- return Err ( MaxMindDBError :: InvalidDatabaseError ( format ! (
136
+ return Err ( MaxMindDbError :: InvalidDatabase ( format ! (
138
137
"Unknown data type: {u:?}"
139
138
) ) )
140
139
}
@@ -151,7 +150,7 @@ impl<'de> Decoder<'de> {
151
150
fn decode_bool ( & mut self , size : usize ) -> DecodeResult < bool > {
152
151
match size {
153
152
0 | 1 => Ok ( size != 0 ) ,
154
- s => Err ( MaxMindDBError :: InvalidDatabaseError ( format ! (
153
+ s => Err ( MaxMindDbError :: InvalidDatabase ( format ! (
155
154
"bool of size {s:?}"
156
155
) ) ) ,
157
156
}
@@ -170,7 +169,7 @@ impl<'de> Decoder<'de> {
170
169
let value: [ u8 ; 4 ] = self . buf [ self . current_ptr ..new_offset]
171
170
. try_into ( )
172
171
. map_err ( |_| {
173
- MaxMindDBError :: InvalidDatabaseError ( format ! (
172
+ MaxMindDbError :: InvalidDatabase ( format ! (
174
173
"float of size {:?}" ,
175
174
new_offset - self . current_ptr
176
175
) )
@@ -185,7 +184,7 @@ impl<'de> Decoder<'de> {
185
184
let value: [ u8 ; 8 ] = self . buf [ self . current_ptr ..new_offset]
186
185
. try_into ( )
187
186
. map_err ( |_| {
188
- MaxMindDBError :: InvalidDatabaseError ( format ! (
187
+ MaxMindDbError :: InvalidDatabase ( format ! (
189
188
"double of size {:?}" ,
190
189
new_offset - self . current_ptr
191
190
) )
@@ -206,7 +205,7 @@ impl<'de> Decoder<'de> {
206
205
self . current_ptr = new_offset;
207
206
Ok ( value)
208
207
}
209
- s => Err ( MaxMindDBError :: InvalidDatabaseError ( format ! (
208
+ s => Err ( MaxMindDbError :: InvalidDatabase ( format ! (
210
209
"u64 of size {s:?}"
211
210
) ) ) ,
212
211
}
@@ -227,7 +226,7 @@ impl<'de> Decoder<'de> {
227
226
self . current_ptr = new_offset;
228
227
Ok ( value)
229
228
}
230
- s => Err ( MaxMindDBError :: InvalidDatabaseError ( format!(
229
+ s => Err ( MaxMindDbError :: InvalidDatabase ( format!(
231
230
"u128 of size {s:?}"
232
231
) ) ) ,
233
232
}
@@ -245,7 +244,7 @@ impl<'de> Decoder<'de> {
245
244
self . current_ptr = new_offset;
246
245
Ok ( value)
247
246
}
248
- s => Err ( MaxMindDBError :: InvalidDatabaseError ( format ! (
247
+ s => Err ( MaxMindDbError :: InvalidDatabase ( format ! (
249
248
"u32 of size {s:?}"
250
249
) ) ) ,
251
250
}
@@ -262,7 +261,7 @@ impl<'de> Decoder<'de> {
262
261
self . current_ptr = new_offset;
263
262
Ok ( value)
264
263
}
265
- s => Err ( MaxMindDBError :: InvalidDatabaseError ( format ! (
264
+ s => Err ( MaxMindDbError :: InvalidDatabase ( format ! (
266
265
"u16 of size {s:?}"
267
266
) ) ) ,
268
267
}
@@ -279,7 +278,7 @@ impl<'de> Decoder<'de> {
279
278
self . current_ptr = new_offset;
280
279
Ok ( value)
281
280
}
282
- s => Err ( MaxMindDBError :: InvalidDatabaseError ( format ! (
281
+ s => Err ( MaxMindDbError :: InvalidDatabase ( format ! (
283
282
"int32 of size {s:?}"
284
283
) ) ) ,
285
284
}
@@ -338,17 +337,17 @@ impl<'de> Decoder<'de> {
338
337
self . current_ptr = new_offset;
339
338
match from_utf8 ( bytes) {
340
339
Ok ( v) => Ok ( v) ,
341
- Err ( _) => Err ( MaxMindDBError :: InvalidDatabaseError (
340
+ Err ( _) => Err ( MaxMindDbError :: InvalidDatabase (
342
341
"error decoding string" . to_owned ( ) ,
343
342
) ) ,
344
343
}
345
344
}
346
345
}
347
346
348
- pub type DecodeResult < T > = Result < T , MaxMindDBError > ;
347
+ pub type DecodeResult < T > = Result < T , MaxMindDbError > ;
349
348
350
349
impl < ' de : ' a , ' a > de:: Deserializer < ' de > for & ' a mut Decoder < ' de > {
351
- type Error = MaxMindDBError ;
350
+ type Error = MaxMindDbError ;
352
351
353
352
fn deserialize_any < V > ( self , visitor : V ) -> DecodeResult < V :: Value >
354
353
where
@@ -383,7 +382,7 @@ struct ArrayAccess<'a, 'de: 'a> {
383
382
// `SeqAccess` is provided to the `Visitor` to give it the ability to iterate
384
383
// through elements of the sequence.
385
384
impl < ' de > SeqAccess < ' de > for ArrayAccess < ' _ , ' de > {
386
- type Error = MaxMindDBError ;
385
+ type Error = MaxMindDbError ;
387
386
388
387
fn next_element_seed < T > ( & mut self , seed : T ) -> DecodeResult < Option < T :: Value > >
389
388
where
@@ -408,7 +407,7 @@ struct MapAccessor<'a, 'de: 'a> {
408
407
// `MapAccess` is provided to the `Visitor` to give it the ability to iterate
409
408
// through entries of the map.
410
409
impl < ' de > MapAccess < ' de > for MapAccessor < ' _ , ' de > {
411
- type Error = MaxMindDBError ;
410
+ type Error = MaxMindDbError ;
412
411
413
412
fn next_key_seed < K > ( & mut self , seed : K ) -> DecodeResult < Option < K :: Value > >
414
413
where
@@ -430,7 +429,7 @@ impl<'de> MapAccess<'de> for MapAccessor<'_, 'de> {
430
429
{
431
430
// Check if there are no more entries.
432
431
if self . count == 0 {
433
- return Err ( DecodingError ( "no more entries" . to_owned ( ) ) ) ;
432
+ return Err ( MaxMindDbError :: Decoding ( "no more entries" . to_owned ( ) ) ) ;
434
433
}
435
434
self . count -= 1 ;
436
435
0 commit comments