Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scylla-rust-wrapper/src/binding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,8 @@ macro_rules! invoke_binder_maker_macro_with_type {
/// In the function, value will be consumed using `$consume_v_name`.
/// * `@name_n` - accepts type and function name, declares this function using `make_name_n_binder` macro.
/// In the function, value will be consumed using `$consume_v_name`.
/// There are also 2 helper variants, to accomodate scenarios often encountered in cppdriver (sets of 3 functions,
/// binding the same type by index, name and name_n):
/// There are also 2 helper variants, to accomodate scenarios often encountered in cppdriver (sets of 3 functions,
/// binding the same type by index, name and name_n):
/// * `make_binders!(type, fn_idx, fn_name, fn_name_n)` - is equivalent to:
/// ```
/// make_binders!(@index type, fn_idx);
Expand Down
1 change: 1 addition & 0 deletions scylla-rust-wrapper/src/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ use uuid::Uuid;
/// - time
/// - counter
/// - timestamp
///
/// There is no such method as `cass_statement_bind_counter`, and so
/// we need to serialize the counter value using `CassCqlValue::BigInt`.
#[derive(Clone, Debug, PartialEq)]
Expand Down
Loading