pub unsafe extern "C" fn cass_prepared_parameter_data_type_by_name_n(
    prepared: *const CassPrepared,
    name: *const c_char,
    name_length: usize
) -> *const CassDataType
Expand description

Same as cass_prepared_parameter_data_type_by_name(), but with lengths for string parameters.

@public @memberof CassPrepared

@param[in] prepared @param[in] name @param[in] name_length @return Returns a reference to the data type of the parameter. Do not free this reference as it is bound to the lifetime of the prepared.

@see cass_prepared_parameter_data_type_by_name()