[][src]Trait assembly_data::xml::obj::sink::InventoryDataSink

pub trait InventoryDataSink {
    type E: ObjectDataSink;
    type IB: InventoryBagsDataSink;
    type IG: InventoryGroupsDataSink;
    type II: InventoryItemsDataSink;
    pub fn end_inv(self) -> Self::E;
pub fn push_attr_csl(self, csl: u32) -> Self;
pub fn start_bag(self) -> Self::IB;
pub fn start_grps(self) -> Self::IG;
pub fn start_items(self) -> Self::II; }

Associated Types

Loading content...

Required methods

pub fn end_inv(self) -> Self::E[src]

pub fn push_attr_csl(self, csl: u32) -> Self[src]

pub fn start_bag(self) -> Self::IB[src]

pub fn start_grps(self) -> Self::IG[src]

pub fn start_items(self) -> Self::II[src]

Loading content...

Implementors

impl<'a> InventoryDataSink for InventoryStoreDataSink<'a>[src]

type E = ObjectStoreDataSink<'a>

type IB = InventoryStoreDataSink<'a>

type IG = InventoryStoreDataSink<'a>

type II = InventoryStoreDataSink<'a>

Loading content...