Trait CanFdFrameExt
Source pub trait CanFdFrameExt {
Show 15 methods
// Required method
fn as_bytes(&self) -> &[u8];
// Provided methods
fn id_word(&self) -> Option<u32> { ... }
fn flags_byte(&self) -> Option<u8> { ... }
fn dlc(&self) -> Option<u8> { ... }
fn data_bytes(&self) -> Option<&[u8]> { ... }
fn is_extended_frame(&self) -> bool { ... }
fn is_rrs(&self) -> bool { ... }
fn is_error_frame(&self) -> bool { ... }
fn is_edl(&self) -> bool { ... }
fn is_brs(&self) -> bool { ... }
fn is_esi(&self) -> bool { ... }
fn can_id(&self) -> Option<Result<CanId, CanError>> { ... }
fn validate(&self) -> Result<(), CanError> { ... }
fn is_valid(&self) -> bool { ... }
fn isotp_bytes(&self, mode: &IsoTpAddressingMode) -> Option<&[u8]> { ... }
}