InventoryItemDataSink

Trait InventoryItemDataSink 

Source
pub trait InventoryItemDataSink {
    type E: InventoryItemBagDataSink;
    type X: InventoryItemExtraDataSink;

    // Required methods
    fn end_i(self) -> Self::E;
    fn push_attr_b(self, v: bool) -> Self;
    fn push_attr_c(self, v: u32) -> Self;
    fn push_attr_eq(self, v: bool) -> Self;
    fn push_attr_id(self, v: u64) -> Self;
    fn push_attr_l(self, v: u32) -> Self;
    fn push_attr_s(self, v: u32) -> Self;
    fn push_attr_sk(self, v: u32) -> Self;
    fn start_x(self) -> Self::X;
}

Required Associated Types§

Required Methods§

Source

fn end_i(self) -> Self::E

Source

fn push_attr_b(self, v: bool) -> Self

Source

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

Source

fn push_attr_eq(self, v: bool) -> Self

Source

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

Source

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

Source

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

Source

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

Source

fn start_x(self) -> Self::X

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§