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§
fn update_txt_entries( &self, txt_entries: &[TxtEntries], ) -> Self::UpdateTxtEntriesResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".