pub trait CoverageDataCollectorProxyInterface: Send + Sync {
    type InitializeResponseFut: Future<Output = Result<Options, Error>> + Send;
    type AddInline8bitCountersResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required methods
    fn initialize(
        &self,
        eventpair: EventPair,
        process: Process
    ) -> Self::InitializeResponseFut;
    fn add_inline8bit_counters(
        &self,
        inline_8bit_counters: Vmo
    ) -> Self::AddInline8bitCountersResponseFut;
}

Required Associated Types§

Required Methods§

source

fn initialize( &self, eventpair: EventPair, process: Process ) -> Self::InitializeResponseFut

source

fn add_inline8bit_counters( &self, inline_8bit_counters: Vmo ) -> Self::AddInline8bitCountersResponseFut

Implementors§