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