1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ProtoStorageInstanceId {
    #[prost(oneof = "proto_storage_instance_id::Kind", tags = "1, 2")]
    pub kind: ::core::option::Option<proto_storage_instance_id::Kind>,
}
/// Nested message and enum types in `ProtoStorageInstanceId`.
pub mod proto_storage_instance_id {
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Kind {
        #[prost(uint64, tag = "1")]
        System(u64),
        #[prost(uint64, tag = "2")]
        User(u64),
    }
}