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