parsec_interface/operations/
delete_client.rs

1// Copyright 2021 Contributors to the Parsec project.
2// SPDX-License-Identifier: Apache-2.0
3//! # DeleteClient operation
4//!
5//! Delete all data a client own in Parsec.
6
7/// Native object for client deleting operation.
8#[derive(Clone, Debug)]
9pub struct Operation {
10    /// A client application name.
11    pub client: String,
12}
13
14/// Native object for client deleting result.
15#[derive(Copy, Clone, Debug)]
16pub struct Result;