dbcrossbarlib 0.5.3

Library for copying data between databases (pre-release)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Arguments which can be passed to various Google Cloud drivers.

use serde::Deserialize;

use crate::clouds::gcloud::bigquery::Labels;

/// Parse version of `--to-arg` and `--from-arg` labels.
#[derive(Clone, Debug, Deserialize)]
#[serde(deny_unknown_fields)]
pub(crate) struct GCloudDriverArguments {
    /// Billing labels to apply to objects and jobs.
    #[serde(default)]
    pub(crate) job_labels: Labels,
}