pub struct GoogleCloudRetailV2OutputConfigGcsDestination {
pub output_uri_prefix: Option<String>,
}Expand description
The Google Cloud Storage output destination configuration.
This type is not used in any activity, and only used as part of another schema.
Fields§
§output_uri_prefix: Option<String>Required. The output uri prefix for saving output data to json files. Some mapping examples are as follows: output_uri_prefix sample output(assuming the object is foo.json) ======================== ============================================= gs://bucket/ gs://bucket/foo.json gs://bucket/folder/ gs://bucket/folder/foo.json gs://bucket/folder/item_ gs://bucket/folder/item_foo.json
Trait Implementations§
Source§impl Clone for GoogleCloudRetailV2OutputConfigGcsDestination
impl Clone for GoogleCloudRetailV2OutputConfigGcsDestination
Source§fn clone(&self) -> GoogleCloudRetailV2OutputConfigGcsDestination
fn clone(&self) -> GoogleCloudRetailV2OutputConfigGcsDestination
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for GoogleCloudRetailV2OutputConfigGcsDestination
impl Default for GoogleCloudRetailV2OutputConfigGcsDestination
Source§fn default() -> GoogleCloudRetailV2OutputConfigGcsDestination
fn default() -> GoogleCloudRetailV2OutputConfigGcsDestination
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudRetailV2OutputConfigGcsDestination
impl<'de> Deserialize<'de> for GoogleCloudRetailV2OutputConfigGcsDestination
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for GoogleCloudRetailV2OutputConfigGcsDestination
Auto Trait Implementations§
impl Freeze for GoogleCloudRetailV2OutputConfigGcsDestination
impl RefUnwindSafe for GoogleCloudRetailV2OutputConfigGcsDestination
impl Send for GoogleCloudRetailV2OutputConfigGcsDestination
impl Sync for GoogleCloudRetailV2OutputConfigGcsDestination
impl Unpin for GoogleCloudRetailV2OutputConfigGcsDestination
impl UnwindSafe for GoogleCloudRetailV2OutputConfigGcsDestination
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more