pub mod error;
use async_trait::async_trait;
use error::*;
use rusty_mms::MmsObjectName;
#[async_trait]
pub trait IccpClient: Send + Sync + Clone {
}
pub enum QualityFlag {
}
pub enum IccpData {
RealQ(f32, Vec<QualityFlag>),
}
#[async_trait]
pub trait IccpServer: Send + Sync + Clone {
}