mz_storage_types/mnt/build/debug/build/mz-storage-types-3dbee9c191e28c8b/out/
mz_storage_types.connections.string_or_secret.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// This file is @generated by prost-build.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoStringOrSecret {
    #[prost(oneof = "proto_string_or_secret::Kind", tags = "1, 2")]
    pub kind: ::core::option::Option<proto_string_or_secret::Kind>,
}
/// Nested message and enum types in `ProtoStringOrSecret`.
pub mod proto_string_or_secret {
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Kind {
        #[prost(string, tag = "1")]
        String(::prost::alloc::string::String),
        #[prost(message, tag = "2")]
        Secret(::mz_repr::catalog_item_id::ProtoCatalogItemId),
    }
}