Trait InventoryGroupDataSink

Source
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§

Source

fn end_grp(self) -> Self::E

Source

fn push_attr_id(self, v: String) -> Self

Source

fn push_attr_l(self, v: String) -> Self

Source

fn push_attr_n(self, v: String) -> Self

Source

fn push_attr_t(self, v: u32) -> Self

Source

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.

Implementors§