Detailed name (and optionally nullability) information for output columns. More...
#include <cudf/io/types.hpp>
Public Member Functions | |
| bool | operator== (column_name_info const &rhs) const =default |
| Compares two column name info structs for equality. More... | |
Public Attributes | |
| std::string | name |
| Column name. | |
| std::optional< bool > | is_nullable |
| Column nullability. | |
| std::optional< bool > | is_binary |
| Column is binary (i.e. not a list) | |
| std::optional< int32_t > | type_length |
| Byte width of data (for fixed length data) | |
| std::vector< column_name_info > | children |
| Child column names. | |
Detailed name (and optionally nullability) information for output columns.
The hierarchy of children matches the hierarchy of children in the output cudf columns.
|
default |
Compares two column name info structs for equality.
| rhs | column name info struct to compare against |