pub trait CatalogService:
Send
+ Sync
+ 'static {
// Required methods
fn find_entries<'life0, 'async_trait>(
&'life0 self,
request: Request<FindEntriesRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<FindEntriesResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn delete_entry<'life0, 'async_trait>(
&'life0 self,
request: Request<DeleteEntryRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<DeleteEntryResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn create_dataset_entry<'life0, 'async_trait>(
&'life0 self,
request: Request<CreateDatasetEntryRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<CreateDatasetEntryResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn read_dataset_entry<'life0, 'async_trait>(
&'life0 self,
request: Request<ReadDatasetEntryRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<ReadDatasetEntryResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn read_table_entry<'life0, 'async_trait>(
&'life0 self,
request: Request<ReadTableEntryRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<ReadTableEntryResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
Generated trait containing gRPC methods that should be implemented for use with CatalogServiceServer.