Skip to main content

InventoryGroupsDataSink

Trait InventoryGroupsDataSink 

Source
pub trait InventoryGroupsDataSink {
    type E: InventoryDataSink;
    type G: InventoryGroupDataSink;

    // Required methods
    fn end_grps(self) -> Self::E;
    fn start_grp(self) -> Self::G;
}

Required Associated Types§

Required Methods§

Source

fn end_grps(self) -> Self::E

Source

fn start_grp(self) -> Self::G

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§