// Copyright (C) 2018-2025 Daniel Mueller <deso@posteo.net>
// SPDX-License-Identifier: GPL-3.0-or-later
//! A module housing serialization related definitions.
pubmodbackends;pubmodid;pubmodstate;pubmodtags;pubmodtasks;pubmodview;/// A trait for types that can be converted into a serializable representation.
pubtraitToSerde{/// The result being produced.
typeOutput;/// Create a serializable representation of `Self`.
fnto_serde(&self)->Self::Output;}