storage_traits/client_storage.rs
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
5use base::generic_channel::GenericSender;
6use serde::{Deserialize, Serialize};
7
8#[derive(Debug, Deserialize, Serialize)]
9pub enum ClientStorageThreadMessage {
10 /// Send a reply when done cleaning up thread resources and then shut it down
11 Exit(GenericSender<()>),
12}