1
2
3
4
5
use crate::DebugProbeError;

pub trait CommunicationInterface {
    fn flush(&mut self) -> Result<(), DebugProbeError>;
}