From 936a57b61145d41b17f2767f258b188ff378145a Mon Sep 17 00:00:00 2001 From: remiposo <57336808+remiposo@users.noreply.github.com> Date: Fri, 4 Jul 2025 14:54:13 +0900 Subject: [PATCH] chore: expose arg_with --- src/func.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/func.rs b/src/func.rs index eaea02e3b..198df8258 100644 --- a/src/func.rs +++ b/src/func.rs @@ -65,7 +65,7 @@ impl FunctionCall { self.arg_with(arg, Default::default()) } - pub(crate) fn arg_with(mut self, arg: T, mod_: FuncArgMod) -> Self + pub fn arg_with(mut self, arg: T, mod_: FuncArgMod) -> Self where T: Into, {