pub trait AsBag {
    type Bag: ConstantBag;

    // Required method
    fn as_bag(self) -> Self::Bag;
}

Required Associated Types§

Required Methods§

source

fn as_bag(self) -> Self::Bag

Implementors§

source§

impl<Bag: ConstantBag> AsBag for Bag

§

type Bag = Bag