parsec_interface/operations/list_clients.rs
1// Copyright 2021 Contributors to the Parsec project.
2// SPDX-License-Identifier: Apache-2.0
3//! # ListClients operation
4//!
5//! Lists all clients owning data in Parsec.
6
7/// Native object for client listing operation.
8#[derive(Copy, Clone, Debug)]
9pub struct Operation;
10
11/// Native object for client listing result.
12#[derive(Debug)]
13pub struct Result {
14 /// A list of client application names.
15 pub clients: Vec<String>,
16}