pub trait MeshcopProxyInterface: Send + Sync {
    type UpdateTxtEntriesResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn update_txt_entries(
        &self,
        txt_entries: &[TxtEntries]
    ) -> Self::UpdateTxtEntriesResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§