30
30
//! [Error](https://doc.rust-lang.org/std/error/trait.Error.html) types.
31
31
//!
32
32
33
- use crate :: {
34
- id:: CanId ,
35
- CanError , ConstructionError ,
36
- } ;
33
+ use crate :: { id:: CanId , CanError , ConstructionError } ;
37
34
use embedded_can:: { ExtendedId , Frame as EmbeddedFrame , Id , StandardId } ;
38
35
use itertools:: Itertools ;
39
36
use libc:: { can_frame, canfd_frame, canid_t} ;
@@ -45,9 +42,9 @@ use std::{
45
42
46
43
// TODO: Remove these on the next major ver update.
47
44
pub use crate :: id:: {
48
- CANFD_BRS , CANFD_ESI , CANFD_MAX_DLEN , CAN_EFF_FLAG , CAN_EFF_MASK , CAN_ERR_FLAG , CAN_ERR_MASK ,
49
- CAN_MAX_DLEN , CAN_RTR_FLAG , CAN_SFF_MASK , ERR_MASK_ALL , ERR_MASK_NONE ,
50
- FdFlags , IdFlags , id_from_raw , id_to_canid_t , id_is_extended ,
45
+ id_from_raw , id_is_extended , id_to_canid_t , FdFlags , IdFlags , CANFD_BRS , CANFD_ESI ,
46
+ CANFD_MAX_DLEN , CAN_EFF_FLAG , CAN_EFF_MASK , CAN_ERR_FLAG , CAN_ERR_MASK , CAN_MAX_DLEN ,
47
+ CAN_RTR_FLAG , CAN_SFF_MASK , ERR_MASK_ALL , ERR_MASK_NONE ,
51
48
} ;
52
49
53
50
// ===== can_frame =====