usecrate::{socket_can::CanSocketTx,uds_client::{DiagError, UdsClient},};usetokio::fs::File;#[allow(dead_code)]impl<T: CanSocketTx>UdsClient<'_, T>{/// Service ID: 0x36 - Transfer Data
/// Description:
/// The function will request a data transfer from ECU.
/// The data will store in the <file> as raw binary
pub async fnget_ecu_log(&mutself, mut_file: File)->Result<(), DiagError>{todo!()}}