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