pub unsafe extern "C" fn cass_statement_bind_custom(
    statement: *mut CassStatement,
    index: usize,
    class_name: *const c_char,
    value: *const cass_byte_t,
    value_size: usize
) -> CassError
Expand description

Binds a “custom” to a query or bound statement at the specified index.

@public @memberof CassStatement

@param[in] statement @param[in] index @param[in] class_name @param[in] value The value is copied into the statement object; the memory pointed to by this parameter can be freed after this call. @param[in] value_size @return CASS_OK if successful, otherwise an error occurred.