fidl_fuchsia_fuzzer

Trait CoverageDataCollectorProxyInterface

Source
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§