pub trait InspectPuppetProxyInterface: Send + Sync {
    type SetHealthOkResponseFut: Future<Output = Result<(), Error>> + Send;
    type RecordStringResponseFut: Future<Output = Result<(), Error>> + Send;
    type RecordIntResponseFut: Future<Output = Result<(), Error>> + Send;
    type EmitExampleInspectDataResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required methods
    fn set_health_ok(&self) -> Self::SetHealthOkResponseFut;
    fn record_string(
        &self,
        key: &str,
        value: &str
    ) -> Self::RecordStringResponseFut;
    fn record_int(&self, key: &str, value: i64) -> Self::RecordIntResponseFut;
    fn emit_example_inspect_data(
        &self
    ) -> Self::EmitExampleInspectDataResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§

source§

impl InspectPuppetProxyInterface for InspectPuppetProxy

§

type SetHealthOkResponseFut = QueryResponseFut<()>

§

type RecordStringResponseFut = QueryResponseFut<()>

§

type RecordIntResponseFut = QueryResponseFut<()>

§

type EmitExampleInspectDataResponseFut = QueryResponseFut<()>