pub trait InventoryGroupDataSink {
type E: InventoryGroupsDataSink;
// Required methods
fn end_grp(self) -> Self::E;
fn push_attr_id(self, v: String) -> Self;
fn push_attr_l(self, v: String) -> Self;
fn push_attr_n(self, v: String) -> Self;
fn push_attr_t(self, v: u32) -> Self;
fn push_attr_u(self, v: String) -> Self;
}
Required Associated Types§
Required Methods§
fn end_grp(self) -> Self::E
fn push_attr_id(self, v: String) -> Self
fn push_attr_l(self, v: String) -> Self
fn push_attr_n(self, v: String) -> Self
fn push_attr_t(self, v: u32) -> Self
fn push_attr_u(self, v: String) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.