fn get_recursive_owned<S>(
svc: Arc<S>,
root_directory_digest: B3Digest,
) -> BoxStream<'static, Result<Directory, Error>>where
S: DirectoryService + 'static,Expand description
The same as DirectoryService::get_recursive, but returning a stream with a static lifetime. It’s only used for the gRPC server wrapper, which requires static lifetimes.