ydb_grpc_bindings/generated/
ydb.formats.rs

1#[allow(clippy::derive_partial_eq_without_eq)]
2#[derive(Clone, PartialEq, ::prost::Message)]
3pub struct ArrowBatchSettings {
4    #[prost(bytes = "vec", tag = "1")]
5    pub schema: ::prost::alloc::vec::Vec<u8>,
6}
7#[allow(clippy::derive_partial_eq_without_eq)]
8#[derive(Clone, PartialEq, ::prost::Message)]
9pub struct CsvSettings {
10    /// Number of rows to skip before CSV data. It should be present only in the first upsert of CSV file.
11    #[prost(uint32, tag = "1")]
12    pub skip_rows: u32,
13    /// Fields delimiter in CSV file. It's "," if not set.
14    #[prost(bytes = "vec", tag = "2")]
15    pub delimiter: ::prost::alloc::vec::Vec<u8>,
16    /// String value that would be interpreted as NULL.
17    #[prost(bytes = "vec", tag = "3")]
18    pub null_value: ::prost::alloc::vec::Vec<u8>,
19    /// First not skipped line is a CSV header (list of column names).
20    #[prost(bool, tag = "4")]
21    pub header: bool,
22}