Trait InventoryBagsDataSink

Source
pub trait InventoryBagsDataSink {
    type E: InventoryDataSink;
    type B: InventoryBagDataSink;

    // Required methods
    fn end_bag(self) -> Self::E;
    fn start_b(self) -> Self::B;
}

Required Associated Types§

Required Methods§

Source

fn end_bag(self) -> Self::E

Source

fn start_b(self) -> Self::B

Implementors§