pub trait FileExplorerService:
Send
+ Sync
+ 'static {
// Required methods
fn get_filesystem_node<'life0, 'async_trait>(
&'life0 self,
request: Request<GetFilesystemNodeRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<GetFilesystemNodeResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_stat<'life0, 'async_trait>(
&'life0 self,
request: Request<GetStatRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<GetStatResponse>, 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 FileExplorerServiceServer.