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>, }