pub trait BooleanStateCmdResponses<'a> {
// Required method
fn boolean_state_inv_resp(&self) -> BooleanStateCmdResponsesView<'a, '_>;
}Expand description
IM-client extension trait for extracting BooleanState-cluster command responses out of a generic crate::im::InvokeResp. use this trait to call .boolean_state_inv_resp() on an InvokeResp; the returned BooleanStateCmdResponsesView exposes one iterator method per command, each yielding (EndptId, Result<<Output>, Error>) — see crate::im::InvokeResp::responses / crate::im::InvokeResp::statuses for the per-entry semantics.
Required Methods§
fn boolean_state_inv_resp(&self) -> BooleanStateCmdResponsesView<'a, '_>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".