cipherstash_grpc_wasm/generated/
stash.grpc.v1.indexes.rs

1#[derive(Clone, PartialEq, ::prost::Message)]
2pub struct Index {
3    #[prost(bytes="vec", tag="1")]
4    pub id: ::prost::alloc::vec::Vec<u8>,
5    #[prost(bytes="vec", tag="2")]
6    pub settings: ::prost::alloc::vec::Vec<u8>,
7    #[prost(uint32, tag="3")]
8    pub first_schema_version: u32,
9    #[prost(uint32, tag="4")]
10    pub last_schema_version: u32,
11    #[prost(enumeration="index::IndexType", tag="5")]
12    pub r#type: i32,
13    #[prost(bool, tag="16")]
14    pub unique: bool,
15}
16/// Nested message and enum types in `Index`.
17pub mod index {
18    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
19    #[repr(i32)]
20    pub enum IndexType {
21        Ore = 0,
22        Filter = 1,
23    }
24}