/* This Source Code Form is subject to the terms of the Mozilla Public *License,v.2.0.IfacopyoftheMPLwasnotdistributedwiththis
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
pubmod bso; #[cfg(feature = "sync-client")] pubmod client; // Type to describe device types mod device_type; // Types to describe client records mod client_types; // Note that `clients_engine` should probably be in `sync_client`, but let's not make // things too nested at this stage... #[cfg(feature = "sync-client")] pubmod clients_engine; #[cfg(feature = "crypto")] mod enc_payload; #[cfg(feature = "sync-engine")] pubmod engine; mod error; #[cfg(feature = "crypto")] mod key_bundle; mod record_types; mod server_timestamp; pubmod telemetry;
// Collection names are almost always `static, so we use a `Cow`: // * Either a `String` or a `'static &str` can be `.into()`'d into one of these. // * Cloning one with a `'static &str` is extremely cheap and doesn't allocate memory. pubtype CollectionName = std::borrow::Cow<'static, str>;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.