From cd280007ffb5f11e803a140345f7d2a739e3f727 Mon Sep 17 00:00:00 2001 From: pedrocarlo Date: Mon, 30 Jun 2025 15:08:48 -0300 Subject: [PATCH] more docs --- bindings/rust/src/statement.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bindings/rust/src/statement.rs b/bindings/rust/src/statement.rs index a55e76265..3b193a460 100644 --- a/bindings/rust/src/statement.rs +++ b/bindings/rust/src/statement.rs @@ -9,6 +9,8 @@ use crate::{ }; /// A prepared statement. +/// +/// Statements when executed or queried are reset after they encounter an error or run to completion pub struct Statement { pub(crate) inner: Arc>, }