From 24a1c946b7017237627d69d293c05237d9b96ca5 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Tue, 9 Dec 2025 13:01:20 +0100 Subject: chore(rocie-client): Regenerate This also adds cookie persisting to the default configuration. --- crates/rocie-client/src/implies.rs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'crates/rocie-client/src/implies.rs') diff --git a/crates/rocie-client/src/implies.rs b/crates/rocie-client/src/implies.rs index e9de0ea..4b4091c 100644 --- a/crates/rocie-client/src/implies.rs +++ b/crates/rocie-client/src/implies.rs @@ -1,6 +1,6 @@ use std::fmt::Display; -use crate::models::{BarcodeId, ProductId, ProductParentId, RecipeId, UnitId, UnitPropertyId}; +use crate::models::{BarcodeId, ProductId, ProductParentId, RecipeId, UnitId, UnitPropertyId, UserId}; // TODO(@bpeetz): The client generator should just do this. <2025-09-23> @@ -45,3 +45,10 @@ impl Display for RecipeId { } } impl Copy for RecipeId {} + +impl Display for UserId { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + self.value.fmt(f) + } +} +impl Copy for UserId {} -- cgit 1.4.1