merge in latest refactor changes

This commit is contained in:
red binder 2026-08-08 03:11:04 +02:00
commit c2f45557da
49 changed files with 163 additions and 1960 deletions

View file

@ -1,6 +1,5 @@
use rnex_rmc::{
RmcSerialize, any::Any, data::Data, method_id, qresult::QResult, response::ErrorCode,
rmc_proto, util::station_url::StationUrl,
RmcSerialize, any::Any, data::Data, method_id, qbuffer::QBuffer, qresult::QResult, response::ErrorCode, rmc_proto, util::station_url::StationUrl
};
#[derive(RmcSerialize)]
@ -35,4 +34,6 @@ pub trait Secure {
) -> Result<(QResult, u32, StationUrl), ErrorCode>;
#[method_id(7)]
async fn replace_url(&self, target: StationUrl, dest: StationUrl) -> Result<(), ErrorCode>;
#[method_id(8)]
async fn send_report(&self, id: u32, data: QBuffer) -> Result<(), ErrorCode>;
}