pub trait ProxyConfigurationWriteResponses<'a> {
// Required method
fn proxy_configuration_write_resp(
&self,
) -> ProxyConfigurationWriteResponsesView<'a, '_>;
}Expand description
IM-client extension trait for extracting ProxyConfiguration-cluster per-attribute write statuses out of a generic crate::im::WriteResp. use this trait to call .proxy_configuration_write_resp() on a WriteResp; the returned ProxyConfigurationWriteResponsesView exposes one iterator method per writable attribute, each yielding (EndptId, Result<(), Error>).
Required Methods§
fn proxy_configuration_write_resp( &self, ) -> ProxyConfigurationWriteResponsesView<'a, '_>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".