pub trait BooleanStateConfigurationAttrReads<P>: Sizedwhere
P: TLVBuilderParent,{
// Required method
fn boolean_state_configuration_read(
self,
) -> BooleanStateConfigurationAttrReadsView<P>;
}Expand description
IM-client extension trait for the BooleanStateConfiguration cluster’s attribute reads. use this trait to call .boolean_state_configuration_read() on an crate::im::AttrPathArrayBuilder; the returned BooleanStateConfigurationAttrReadsView exposes one method per attribute (cluster-prefix-free). .end() on the view closes the wrapped array.
Required Methods§
fn boolean_state_configuration_read( self, ) -> BooleanStateConfigurationAttrReadsView<P>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".