fn into()

in src/store/memory.rs [80:86]


        fn into(self) -> Product {
            Product {
                id: self.id.to_string(),
                name: self.name.to_string(),
                price: self.price,
            }
        }