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