pub struct VehicleSignalDecoding { /* private fields */ }Implementations§
Source§impl VehicleSignalDecoding
impl VehicleSignalDecoding
pub fn new(base_url: &str) -> Self
pub async fn list_config_urls_by_vin( &self, vin: &str, protocol: Option<&str>, ) -> Result<Value, Box<dyn Error>>
pub async fn list_config_urls_by_address( &self, address: &str, protocol: Option<&str>, ) -> Result<Value, Box<dyn Error>>
pub async fn get_pid_configs( &self, template_name: &str, ) -> Result<Value, Box<dyn Error>>
pub async fn get_device_settings( &self, template_name: &str, ) -> Result<Value, Box<dyn Error>>
pub async fn get_dbc_text( &self, template_name: &str, ) -> Result<Value, Box<dyn Error>>
pub async fn get_device_status_by_address( &self, address: &str, ) -> Result<Value, Box<dyn Error>>
pub async fn set_device_status_by_address( &self, address: &str, config: Value, ) -> Result<Value, Box<dyn Error>>
pub async fn get_jobs_by_address( &self, address: &str, ) -> Result<Value, Box<dyn Error>>
pub async fn get_pending_jobs_by_address( &self, address: &str, ) -> Result<Value, Box<dyn Error>>
pub async fn set_job_status_by_address( &self, address: &str, job_id: &str, status: &str, ) -> Result<Value, Box<dyn Error>>
Auto Trait Implementations§
impl Freeze for VehicleSignalDecoding
impl RefUnwindSafe for VehicleSignalDecoding
impl Send for VehicleSignalDecoding
impl Sync for VehicleSignalDecoding
impl Unpin for VehicleSignalDecoding
impl UnwindSafe for VehicleSignalDecoding
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more