cudf-cxx 0.2.0

cxx-based FFI bridge between Rust and NVIDIA libcudf C++ API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Bridge definitions for libcudf timezone operations.

#[cxx::bridge(namespace = "cudf_shims")]
pub mod ffi {
    unsafe extern "C++" {
        include!("timezone_shim.h");
        include!("table_shim.h");

        type OwnedTable = crate::table::ffi::OwnedTable;

        /// Create a timezone transition table for converting ORC timestamps to UTC.
        fn make_timezone_transition_table(timezone_name: &str) -> Result<UniquePtr<OwnedTable>>;
    }
}