fn new()

in amazon-qldb-driver-core/src/transaction.rs [266:274]


    fn new(attempt: &'tx mut TransactionAttempt<C>, partiql: String) -> StatementBuilder<'tx, C> {
        StatementBuilder {
            attempt,
            statement: Statement {
                partiql: partiql.into(),
                params: vec![],
            },
        }
    }