Skip to content

Small fixes to API documentation & README #347

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 16, 2025
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
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ The driver inherits almost all the features of C/C++ and Rust drivers, such as:
- cass_cluster_set_host_listener_callback
- cass_cluster_set_max_concurrent_creation
- cass_cluster_set_max_concurrent_requests_threshold
- cass_cluster_set_max_connections_per_host
- cass_cluster_set_max_requests_per_flush
- cass_cluster_set_max_reusable_write_objects
- cass_cluster_set_monitor_reporting_interval
Expand All @@ -283,7 +284,7 @@ The driver inherits almost all the features of C/C++ and Rust drivers, such as:
- cass_collection_append_custom
- cass_collection_append_custom_n

#### CassColumn
#### CassColumnMeta:
- cass_column_meta_field_by_name
- cass_column_meta_field_by_name_n

Expand Down Expand Up @@ -384,6 +385,8 @@ The driver inherits almost all the features of C/C++ and Rust drivers, such as:
- cass_tuple_set_custom
- cass_tuple_set_custom_n

#### CassValue:
- cass_value_get_custom

# Testing
___
Expand Down
20 changes: 10 additions & 10 deletions scylla-rust-wrapper/src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,12 @@ pub mod cluster {
cass_cluster_set_no_speculative_execution_policy,
// cass_cluster_set_num_threads_io, UNIMPLEMENTED
cass_cluster_set_port,
// cass_cluster_set_pending_requests_high_water_mark, UNIMPLEMENTED
// cass_cluster_set_pending_requests_low_water_mark, UNIMPLEMENTED
// cass_cluster_set_prepare_on_all_hosts, UNIMPLEMENTED
// cass_cluster_set_prepare_on_up_or_add_host, UNIMPLEMENTED
cass_cluster_set_protocol_version,
cass_cluster_set_queue_size_event,
cass_cluster_set_queue_size_event, // No-op both in CPP and in the wrapper.
// cass_cluster_set_queue_size_io, UNIMPLEMENTED
// cass_cluster_set_reconnect_wait_time, UNIMPLEMENTED
cass_cluster_set_request_timeout,
Expand All @@ -122,9 +124,9 @@ pub mod cluster {
cass_cluster_set_timestamp_gen,
cass_cluster_set_token_aware_routing,
cass_cluster_set_token_aware_routing_shuffle_replicas,
// cass_cluster_set_tracing_consistency, UNIMPLEMENTED
// cass_cluster_set_tracing_max_wait_time, UNIMPLEMENTED
// cass_cluster_set_tracing_retry_wait_time, UNIMPLEMENTED
// cass_cluster_set_tracing_consistency, UNIMPLEMENTED
cass_cluster_set_use_beta_protocol_version,
// cass_cluster_set_use_hostname_resolution, UNIMPLEMENTED
// cass_cluster_set_use_randomized_contact_points, UNIMPLEMENTED, stub present
Expand All @@ -135,8 +137,6 @@ pub mod cluster {
cass_cluster_set_whitelist_filtering_n,
// cass_cluster_set_write_bytes_high_water_mark, UNIMPLEMENTED
// cass_cluster_set_write_bytes_low_water_mark, UNIMPLEMENTED
// cass_cluster_set_pending_requests_high_water_mark, UNIMPLEMENTED
// cass_cluster_set_pending_requests_low_water_mark, UNIMPLEMENTED
};
}

Expand Down Expand Up @@ -267,9 +267,9 @@ pub mod index_meta {
#[expect(unused_imports)]
pub use crate::metadata::{
// CassIndexMeta,
// cass_index_meta_name, UNIMPLEMENTED
// cass_index_meta_field_by_name, UNIMPLEMENTED
// cass_index_meta_field_by_name_n, UNIMPLEMENTED
// cass_index_meta_name, UNIMPLEMENTED
// cass_index_meta_options, UNIMPLEMENTED
// cass_index_meta_target, UNIMPLEMENTED
// cass_index_meta_type, UNIMPLEMENTED
Expand Down Expand Up @@ -754,27 +754,27 @@ pub mod iterator {
// cass_iterator_aggregates_from_keyspace_meta, UNIMPLEMENTED
cass_iterator_columns_from_materialized_view_meta,
cass_iterator_columns_from_table_meta,
// cass_iterator_functions_from_keyspace_meta, UNIMPLEMENTED
// cass_iterator_fields_from_keyspace_meta, UNIMPLEMENTED
// cass_iterator_fields_from_table_meta, UNIMPLEMENTED
// cass_iterator_fields_from_materialized_view_meta, UNIMPLEMENTED
// cass_iterator_fields_from_column_meta, UNIMPLEMENTED
// cass_iterator_fields_from_index_meta, UNIMPLEMENTED
// cass_iterator_fields_from_function_meta, UNIMPLEMENTED
// cass_iterator_fields_from_aggregate_meta, UNIMPLEMENTED
// cass_iterator_functions_from_keyspace_meta, UNIMPLEMENTED
// cass_iterator_get_aggregate_meta, UNIMPLEMENTED
cass_iterator_get_column,
cass_iterator_get_column_meta,
// cass_iterator_get_function_meta, UNIMPLEMENTED
// cass_iterator_get_index_meta, UNIMPLEMENTED
// cass_iterator_get_meta_field_name, UNIMPLEMENTED
cass_iterator_get_map_key,
cass_iterator_get_map_value,
cass_iterator_get_materialized_view_meta,
// cass_iterator_get_meta_field_name, UNIMPLEMENTED
// cass_iterator_get_meta_field_value, UNIMPLEMENTED
cass_iterator_get_user_type_field_name,
cass_iterator_get_user_type_field_value,
cass_iterator_get_keyspace_meta,
// cass_iterator_get_meta_field_value, UNIMPLEMENTED
cass_iterator_get_row,
cass_iterator_get_table_meta,
cass_iterator_get_value,
Expand Down Expand Up @@ -853,10 +853,10 @@ pub mod uuid {
pub use crate::uuid::{
cass_uuid_from_string,
cass_uuid_from_string_n,
cass_uuid_min_from_time,
cass_uuid_max_from_time,
cass_uuid_timestamp,
cass_uuid_min_from_time,
cass_uuid_string,
cass_uuid_timestamp,
cass_uuid_version,
};
}
Expand Down