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